You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by mi...@apache.org on 2014/10/21 10:07:47 UTC

svn commit: r1633304 - /lucene/dev/trunk/lucene/core/src/test/org/apache/lucene/document/TestDocument.java

Author: mikemccand
Date: Tue Oct 21 08:07:46 2014
New Revision: 1633304

URL: http://svn.apache.org/r1633304
Log:
correct exotic whitespace

Modified:
    lucene/dev/trunk/lucene/core/src/test/org/apache/lucene/document/TestDocument.java

Modified: lucene/dev/trunk/lucene/core/src/test/org/apache/lucene/document/TestDocument.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/core/src/test/org/apache/lucene/document/TestDocument.java?rev=1633304&r1=1633303&r2=1633304&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/core/src/test/org/apache/lucene/document/TestDocument.java (original)
+++ lucene/dev/trunk/lucene/core/src/test/org/apache/lucene/document/TestDocument.java Tue Oct 21 08:07:46 2014
@@ -272,10 +272,8 @@ public class TestDocument extends Lucene
     doc.add(new TextField("text", "test2", Field.Store.YES));
     doc.add(new Field("unindexed", "test1", stored));
     doc.add(new Field("unindexed", "test2", stored));
-    doc
-        .add(new TextField("unstored", "test1", Field.Store.NO));
-    doc
-        .add(new TextField("unstored", "test2", Field.Store.NO));
+    doc.add(new TextField("unstored", "test1", Field.Store.NO));
+    doc.add(new TextField("unstored", "test2", Field.Store.NO));
     doc.add(new Field("indexed_not_tokenized", "test1", indexedNotTokenized));
     doc.add(new Field("indexed_not_tokenized", "test2", indexedNotTokenized));
     return doc;