You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@solr.apache.org by no...@apache.org on 2023/07/19 05:55:30 UTC

[solr] branch branch_9x updated: Remove a println statement from JSONTestUtil (#1795)

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

noble pushed a commit to branch branch_9x
in repository https://gitbox.apache.org/repos/asf/solr.git


The following commit(s) were added to refs/heads/branch_9x by this push:
     new ffed8de9712 Remove a println statement from JSONTestUtil (#1795)
ffed8de9712 is described below

commit ffed8de971217c55f8ea80043bbf149bf250c92a
Author: patsonluk <pa...@users.noreply.github.com>
AuthorDate: Tue Jul 18 22:54:43 2023 -0700

    Remove a println statement from JSONTestUtil (#1795)
---
 solr/test-framework/src/java/org/apache/solr/JSONTestUtil.java | 1 -
 1 file changed, 1 deletion(-)

diff --git a/solr/test-framework/src/java/org/apache/solr/JSONTestUtil.java b/solr/test-framework/src/java/org/apache/solr/JSONTestUtil.java
index 70cdcc27fd7..029ba3bfbb8 100644
--- a/solr/test-framework/src/java/org/apache/solr/JSONTestUtil.java
+++ b/solr/test-framework/src/java/org/apache/solr/JSONTestUtil.java
@@ -77,7 +77,6 @@ public class JSONTestUtil {
     int pos = pathAndExpected.indexOf("==");
     String path = pos >= 0 ? pathAndExpected.substring(0, pos) : null;
     String expected = pos >= 0 ? pathAndExpected.substring(pos + 2) : pathAndExpected;
-    System.out.println("IN-PUT: " + input);
     return match(path, input, expected, delta);
   }