Trivial change: < -> <=
git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@2415 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
parent
566b556b50
commit
4ff61097cf
|
|
@ -106,7 +106,7 @@ public class IntervalMergerWalker extends ReadWalker<Integer,Integer> {
|
|||
@Override
|
||||
public void onTraversalDone( Integer value ) {
|
||||
if ( currentInterval != null && currentIntervalIsUsed &&
|
||||
(maxIntervalSize <= 0 || currentInterval.getStop() - currentInterval.getStart() < maxIntervalSize) )
|
||||
(maxIntervalSize <= 0 || currentInterval.getStop() - currentInterval.getStart() <= maxIntervalSize) )
|
||||
out.println(currentInterval);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue