Added some FIXMEs.
This commit is contained in:
parent
eb294f92c1
commit
170b607992
|
@ -388,6 +388,7 @@ public class DateRangeParam implements IQueryParameterAnd<DateParam> {
|
|||
return Objects.hash(myLowerBound, myUpperBound);
|
||||
}
|
||||
|
||||
// FIXME: DM 2019-12-30 - We're matching exactly but need to account for intervals (see issue #1652).
|
||||
public boolean isDateWithinRange(Date theDate) {
|
||||
boolean retVal = false;
|
||||
|
||||
|
|
|
@ -48,6 +48,8 @@ public class DateRangeParamTest {
|
|||
myAfter = new Date();
|
||||
}
|
||||
|
||||
// FIXME: DM 2019-12-30 - We're matching exactly but need to account for intervals (see issue #1652).
|
||||
|
||||
@Test
|
||||
public void testIsDateWithinRangeExclusive() {
|
||||
DateParam lowerBound = new DateParam(GREATERTHAN, myLower);
|
||||
|
|
Loading…
Reference in New Issue