Skip to content

Commit

Permalink
fix bug introduced with a0af57f
Browse files Browse the repository at this point in the history
  • Loading branch information
tpietzsch committed Sep 27, 2024
1 parent 3ac7a0f commit 1814bab
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ public static final ArrayList< ViewId > overlappingViewIds(

public static boolean overlaps( final Interval interval1, final Interval interval2 )
{
return Intervals.isEmpty( Intervals.intersect( interval1, interval2 ) );
return !Intervals.isEmpty( Intervals.intersect( interval1, interval2 ) );
}

}

0 comments on commit 1814bab

Please sign in to comment.