You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by jp...@apache.org on 2019/06/27 06:10:05 UTC

[lucene-solr] branch branch_8x updated: LUCENE-8815: Remove leftover println.

This is an automated email from the ASF dual-hosted git repository.

jpountz pushed a commit to branch branch_8x
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/branch_8x by this push:
     new cf443ad  LUCENE-8815: Remove leftover println.
cf443ad is described below

commit cf443ad9f756407fa8db5ad5bfd39c26367acbc9
Author: Adrien Grand <jp...@gmail.com>
AuthorDate: Thu Jun 27 08:09:26 2019 +0200

    LUCENE-8815: Remove leftover println.
---
 .../src/test/org/apache/lucene/document/TestFeatureDoubleValues.java     | 1 -
 1 file changed, 1 deletion(-)

diff --git a/lucene/core/src/test/org/apache/lucene/document/TestFeatureDoubleValues.java b/lucene/core/src/test/org/apache/lucene/document/TestFeatureDoubleValues.java
index 961afd1..64518e3 100644
--- a/lucene/core/src/test/org/apache/lucene/document/TestFeatureDoubleValues.java
+++ b/lucene/core/src/test/org/apache/lucene/document/TestFeatureDoubleValues.java
@@ -145,7 +145,6 @@ public class TestFeatureDoubleValues extends LuceneTestCase {
     Directory dir = newDirectory();
     IndexWriterConfig config = newIndexWriterConfig().setMergePolicy(newLogMergePolicy(random().nextBoolean()));
     RandomIndexWriter writer = new RandomIndexWriter(random(), dir, config);
-    System.out.println(writer.w.getConfig());
     Document doc = new Document();
     writer.addDocument(doc);
     doc = new Document();