diff --git a/src/Range.cpp b/src/Range.cpp index bed22d91..641354c9 100644 --- a/src/Range.cpp +++ b/src/Range.cpp @@ -161,11 +161,6 @@ bool Range::startsWithin (const Range& other) const return false; } - if (!is_started ()) - { - return !other.is_started (); - } - return other.start == start || other.contains (start); } @@ -177,11 +172,6 @@ bool Range::endsWithin (const Range& other) const return false; } - if (!is_ended ()) - { - return !other.is_ended (); - } - return other.end == end || other.contains (end); }