LUCENE-7278: DRPT: fix bug in assert statement

This commit is contained in:
David Smiley 2016-05-12 23:03:32 -04:00
parent 06034c2474
commit 1d35bd0ea8
2 changed files with 4 additions and 3 deletions

View File

@ -23,7 +23,8 @@ New Features
queries with excluded bounds. (Adrien Grand)
* LUCENE-7278: Spatial-extras DateRangePrefixTree's Calendar is now configurable, to
e.g. clear the Gregorian Change Date. (David Smiley)
e.g. clear the Gregorian Change Date. Also, toString(cal) is now identical to
DateTimeFormatter.ISO_INSTANT. (David Smiley)
API Changes

View File

@ -259,7 +259,7 @@ public class DateRangePrefixTree extends NumberRangePrefixTree {
for (int f = field + 1; f <= Calendar.MILLISECOND; f++) {
cal.clear(f);
}
assert ((Calendar)cal.clone()).get(Calendar.ERA) == assertEra : "Calendar underflow";
assert field + 1 == Calendar.ERA || ((Calendar)cal.clone()).get(Calendar.ERA) == assertEra : "Calendar underflow";
}
/** Converts {@code value} from a {@link Calendar} or {@link Date} to a {@link Shape}. Other arguments