Make upper bound of time facet inclusive - fixes issue #648

This commit is contained in:
Tom Morris 2013-03-03 16:06:20 -05:00
parent 5778a18b05
commit 10bd7e3b75

View File

@ -157,7 +157,7 @@ public class TimeRangeFacet extends RangeFacet {
@Override
protected boolean checkValue(long t) {
return t >= _from && t < _to;
return t >= _from && t <= _to;
};
};
} else {