You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hop.apache.org by ha...@apache.org on 2020/11/23 09:55:41 UTC

[incubator-hop] branch master updated: HOP-2216: Remove system out that sneaked in the code (#406)

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

hansva pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-hop.git


The following commit(s) were added to refs/heads/master by this push:
     new 517f3f9  HOP-2216: Remove system out that sneaked in the code (#406)
517f3f9 is described below

commit 517f3f99c5d4e3374d89e071b9c0194139add25b
Author: Hans Van Akelyen <ha...@gmail.com>
AuthorDate: Mon Nov 23 10:55:34 2020 +0100

    HOP-2216: Remove system out that sneaked in the code (#406)
---
 engine/src/main/java/org/apache/hop/run/HopRun.java | 1 -
 1 file changed, 1 deletion(-)

diff --git a/engine/src/main/java/org/apache/hop/run/HopRun.java b/engine/src/main/java/org/apache/hop/run/HopRun.java
index d40c5f4..a779e45 100644
--- a/engine/src/main/java/org/apache/hop/run/HopRun.java
+++ b/engine/src/main/java/org/apache/hop/run/HopRun.java
@@ -698,7 +698,6 @@ public class HopRun implements Runnable, IHasHopMetadataProvider {
         System.exit( 1 );
       } else {
         hopRun.run();
-        System.out.println(hopRun.isFinishedWithoutError());
         if (hopRun.isFinishedWithoutError()) {
           System.exit( 0 );
         } else {