Update CHANGES.txt for LUCENE-584

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@618188 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Busch 2008-02-04 07:42:14 +00:00
parent 0ec1870b11
commit cc6778188f
1 changed files with 4 additions and 1 deletions

View File

@ -31,7 +31,10 @@ API Changes
3. LUCENE-584: Changed Filter API to return a DocIdSet instead of a
java.util.BitSet. This allows using more efficient data structures
for Filters and makes them more flexible. (Paul Elschot, Michael Busch)
for Filters and makes them more flexible. This deprecates
Filter.bits(), so all filters that implement this outside
the Lucene code base will need to be adapted. See also the javadocs
of the Filter class. (Paul Elschot, Michael Busch)
Bug fixes