You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by gu...@apache.org on 2019/03/12 20:09:45 UTC

[lucene-solr] branch master updated: Remove inadvertently included println

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

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


The following commit(s) were added to refs/heads/master by this push:
     new cf88f54  Remove inadvertently included println
cf88f54 is described below

commit cf88f54a295ff0b8a24c8b28c7bdb9fc0d354a40
Author: Gus Heck <gu...@apache.org>
AuthorDate: Tue Mar 12 16:09:04 2019 -0400

    Remove inadvertently included println
---
 .../org/apache/solr/client/solrj/io/stream/expr/InjectionDefense.java    | 1 -
 1 file changed, 1 deletion(-)

diff --git a/solr/solrj/src/java/org/apache/solr/client/solrj/io/stream/expr/InjectionDefense.java b/solr/solrj/src/java/org/apache/solr/client/solrj/io/stream/expr/InjectionDefense.java
index 69c43c7..130f6d9 100644
--- a/solr/solrj/src/java/org/apache/solr/client/solrj/io/stream/expr/InjectionDefense.java
+++ b/solr/solrj/src/java/org/apache/solr/client/solrj/io/stream/expr/InjectionDefense.java
@@ -82,7 +82,6 @@ public class InjectionDefense {
   @SuppressWarnings("WeakerAccess")
   public StreamExpression safeExpression() {
     String exprStr = buildExpression();
-    System.out.println(exprStr);
     StreamExpression parsed = StreamExpressionParser.parse(exprStr);
     int actual = countExpressions(parsed);
     if (actual != expressionCount) {