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:54:49 UTC

[solr] branch main 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 main
in repository https://gitbox.apache.org/repos/asf/solr.git


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

commit 83cbbc3e97cdee064cef3e917f0b0e9ca28840a9
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);
   }