From 5c4063bef258ed61b184e9a4bf54ff5307816177 Mon Sep 17 00:00:00 2001 From: Uwe Schindler Date: Sun, 27 Nov 2011 12:15:01 +0000 Subject: [PATCH] fix changes.txt git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1206707 13f79535-47bb-0310-9956-ffa450edef68 --- lucene/CHANGES.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lucene/CHANGES.txt b/lucene/CHANGES.txt index 196f0fcbd54..5add7788d18 100644 --- a/lucene/CHANGES.txt +++ b/lucene/CHANGES.txt @@ -685,11 +685,6 @@ Changes in backwards compatibility policy As this is expert API, most code will not be affected. (Uwe Schindler, Doron Cohen, Mike McCandless) -* LUCENE-3464: IndexReader.reopen has been renamed to - IndexReader.openIfChanged (a static method), and now returns null - (instead of the old reader) if there are no changes in the index, to - prevent the common pitfall of accidentally closing the old reader. - * LUCENE-3541: Remove IndexInput's protected copyBuf. If you want to keep a buffer in your IndexInput, do this yourself in your implementation, and be sure to do the right thing on clone()! (Robert Muir) @@ -794,6 +789,11 @@ API Changes justified. MergePolicy.findMergesToExpungeDeletes was renamed to findForcedDeletesMerges. (Robert Muir, Mike McCandless) +* LUCENE-3464: IndexReader.reopen has been renamed to + IndexReader.openIfChanged (a static method), and now returns null + (instead of the old reader) if there are no changes in the index, to + prevent the common pitfall of accidentally closing the old reader. + New Features * LUCENE-3448: Added FixedBitSet.and(other/DISI), andNot(other/DISI).