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/05/18 18:29:22 UTC

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

Author: uschindler
Date: Wed May 18 16:29:21 2011
New Revision: 1124330

URL: http://svn.apache.org/viewvc?rev=1124330&view=rev
Log:
Fix tabs

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=1124330&r1=1124329&r2=1124330&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/CHANGES.txt (original)
+++ lucene/dev/trunk/lucene/CHANGES.txt Wed May 18 16:29:21 2011
@@ -479,14 +479,14 @@ Changes in backwards compatibility polic
 
 * LUCENE-3084: MergePolicy.OneMerge.segments was changed from
   SegmentInfos to a List<SegmentInfo>. SegmentInfos itsself was changed
-	to no longer extend Vector<SegmentInfo> (to update code that is using
-	Vector-API, use the new asList() and asSet() methods returning unmodifiable
-	collections; modifying SegmentInfos is now only possible through
-	the explicitely declared methods). IndexWriter.segString() now takes
-	Iterable<SegmentInfo> instead of List<SegmentInfo>. A simple recompile
-	should fix this. MergePolicy and SegmentInfos are internal/experimental
-	APIs not covered by the strict backwards compatibility policy.
-	(Uwe Schindler, Mike McCandless)
+  to no longer extend Vector<SegmentInfo> (to update code that is using
+  Vector-API, use the new asList() and asSet() methods returning unmodifiable
+  collections; modifying SegmentInfos is now only possible through
+  the explicitely declared methods). IndexWriter.segString() now takes
+  Iterable<SegmentInfo> instead of List<SegmentInfo>. A simple recompile
+  should fix this. MergePolicy and SegmentInfos are internal/experimental
+  APIs not covered by the strict backwards compatibility policy.
+  (Uwe Schindler, Mike McCandless)
 
 Changes in runtime behavior