From 3c3258825f66f13c0407d7607fd92fab0f987a86 Mon Sep 17 00:00:00 2001 From: Michael McCandless Date: Tue, 21 Oct 2014 08:07:46 +0000 Subject: [PATCH] correct exotic whitespace git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1633304 13f79535-47bb-0310-9956-ffa450edef68 --- .../src/test/org/apache/lucene/document/TestDocument.java | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/lucene/core/src/test/org/apache/lucene/document/TestDocument.java b/lucene/core/src/test/org/apache/lucene/document/TestDocument.java index 483d212ab81..b176d409291 100644 --- a/lucene/core/src/test/org/apache/lucene/document/TestDocument.java +++ b/lucene/core/src/test/org/apache/lucene/document/TestDocument.java @@ -272,10 +272,8 @@ public class TestDocument extends LuceneTestCase { 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;