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/12/07 18:39:03 UTC

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

Author: uschindler
Date: Wed Dec  7 17:39:03 2011
New Revision: 1211559

URL: http://svn.apache.org/viewvc?rev=1211559&view=rev
Log:
LUCENE-3620: Merge changes, actual fix will come with merging branch of LUCENE-3606 back to trunk.

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=1211559&r1=1211558&r2=1211559&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/CHANGES.txt (original)
+++ lucene/dev/trunk/lucene/CHANGES.txt Wed Dec  7 17:39:03 2011
@@ -649,6 +649,13 @@ Changes in backwards compatibility polic
   FieldCacheTermsFilter.FieldCacheTermsFilterDocIdSet was removed and
   replaced by another internal implementation.  (Uwe Schindler)
 
+* LUCENE-3620: FilterIndexReader now overrides all methods of IndexReader that 
+  it should (note that some are still not overridden, as they should be 
+  overridden by sub-classes only). In the process, some methods of IndexReader 
+  were made final. This is not expected to affect many apps, since these methods
+  already delegate to abstract methods, which you had to already override 
+  anyway. (Shai Erera)
+  
 Security fixes
 
 * LUCENE-3588: Try harder to prevent SIGSEGV on cloned MMapIndexInputs: