You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by jb...@apache.org on 2019/03/06 19:00:56 UTC

[lucene-solr] branch branch_8x updated: SOLR-13287: Remove System.out debugging

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

jbernste 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 9456d25  SOLR-13287: Remove System.out debugging
9456d25 is described below

commit 9456d25b1338983844934fae6226e719fdf19460
Author: Joel Bernstein <jb...@apache.org>
AuthorDate: Wed Mar 6 13:56:02 2019 -0500

    SOLR-13287: Remove System.out debugging
---
 .../src/java/org/apache/solr/client/solrj/io/stream/ZplotStream.java  | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/solr/solrj/src/java/org/apache/solr/client/solrj/io/stream/ZplotStream.java b/solr/solrj/src/java/org/apache/solr/client/solrj/io/stream/ZplotStream.java
index 8f7165a..06e2943 100644
--- a/solr/solrj/src/java/org/apache/solr/client/solrj/io/stream/ZplotStream.java
+++ b/solr/solrj/src/java/org/apache/solr/client/solrj/io/stream/ZplotStream.java
@@ -254,14 +254,11 @@ public class ZplotStream extends TupleStream implements Expressible {
           outTuples.add(tuple);
         }
       } else if(o instanceof List) {
-        System.out.print("Is list");
         List list = (List)o;
         if(list.get(0) instanceof Tuple) {
-          System.out.print("Are tuples");
           List<Tuple> tlist = (List<Tuple>)o;
           Tuple tuple = tlist.get(0);
           if(tuple.fields.containsKey("N")) {
-            System.out.println("Is hist");
             for(Tuple t : tlist) {
               Tuple outtuple = new Tuple(new HashMap());
               outtuple.put("x", Precision.round(((double)t.get("mean")), 2));
@@ -269,7 +266,6 @@ public class ZplotStream extends TupleStream implements Expressible {
               outTuples.add(outtuple);
             }
           } else if(tuple.fields.containsKey("count")) {
-            System.out.println("Is freq");
             for(Tuple t : tlist) {
               Tuple outtuple = new Tuple(new HashMap());
               outtuple.put("x", t.get("value"));