You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by us...@apache.org on 2011/11/27 13:15:02 UTC

svn commit: r1206707 - /lucene/dev/trunk/lucene/CHANGES.txt

Author: uschindler
Date: Sun Nov 27 12:15:01 2011
New Revision: 1206707

URL: http://svn.apache.org/viewvc?rev=1206707&view=rev
Log:
fix changes.txt

Modified:
    lucene/dev/trunk/lucene/CHANGES.txt

Modified: lucene/dev/trunk/lucene/CHANGES.txt
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/CHANGES.txt?rev=1206707&r1=1206706&r2=1206707&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/CHANGES.txt (original)
+++ lucene/dev/trunk/lucene/CHANGES.txt Sun Nov 27 12:15:01 2011
@@ -685,11 +685,6 @@ Changes in backwards compatibility polic
   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).