You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@calcite.apache.org by vl...@apache.org on 2021/05/06 07:56:16 UTC

[calcite] branch master updated: Remove System.out.println from DiffRepository

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

vladimirsitnikov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/calcite.git


The following commit(s) were added to refs/heads/master by this push:
     new 0d1e7a8  Remove System.out.println from DiffRepository
0d1e7a8 is described below

commit 0d1e7a8745a88e308f872d3450a333b319ffeea7
Author: Vladimir Sitnikov <si...@gmail.com>
AuthorDate: Thu May 6 10:55:18 2021 +0300

    Remove System.out.println from DiffRepository
---
 core/src/test/java/org/apache/calcite/test/DiffRepository.java | 1 -
 1 file changed, 1 deletion(-)

diff --git a/core/src/test/java/org/apache/calcite/test/DiffRepository.java b/core/src/test/java/org/apache/calcite/test/DiffRepository.java
index b1c010b..7432214 100644
--- a/core/src/test/java/org/apache/calcite/test/DiffRepository.java
+++ b/core/src/test/java/org/apache/calcite/test/DiffRepository.java
@@ -549,7 +549,6 @@ public class DiffRepository {
       try (Writer w = Util.printWriter(logFile)) {
         write(doc, w, indent);
       }
-      System.out.println("write; modCount=" + modCount);
     } catch (IOException e) {
       throw Util.throwAsRuntime("error while writing test reference log '"
           + logFile + "'", e);