LUCENE-8735: fix changes entry after backport

This commit is contained in:
Simon Willnauer 2019-03-26 15:57:43 +01:00
parent 04afdb6442
commit 8d7619f4e6

View File

@ -7,10 +7,6 @@ http://s.apache.org/luceneversions
API Changes
* LUCENE-8735: Directory.getPendingDeletions is now abstract to ensure
subclasses override it. FilterDirectory now delegates the call, ensuring
correct default behaviour for subclasses. (Henning Andersen)
* LUCENE-8474: RAMDirectory and associated deprecated classes have been
removed. (Dawid Weiss)
@ -34,6 +30,10 @@ API Changes
been deprecated. (Alan Woodward, Simon Willnauer, David Smiley, Luca
Cavanna)
* LUCENE-8735: Directory.getPendingDeletions is now abstract to ensure
subclasses override it. FilterDirectory now delegates the call, ensuring
correct default behaviour for subclasses. (Henning Andersen)
Bug fixes
* LUCENE-8712: Polygon2D does not detect crossings through segment edges.