For finding the overlap of two date ranges i understand we need something like.
(thisStart <= otherEnd ) && (otherStart <= thisEnd)
But inside the overlaps method from Joda Time I see
thisStart < otherEnd && otherStart < thisEnd
This wont cover certain overlap conditions. Is there any other method which cover overlap using <=