mirror of https://github.com/apache/lucene.git
correct exotic whitespace
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1633304 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
8f9f8a3252
commit
3c3258825f
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue