You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by ok...@apache.org on 2016/01/12 22:10:56 UTC

[09/15] incubator-tinkerpop git commit: Remove debug lines

Remove debug lines


Project: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/commit/7578c603
Tree: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/tree/7578c603
Diff: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/diff/7578c603

Branch: refs/heads/master
Commit: 7578c6039823d0784b2e44e8fd5babf80cdbe8ee
Parents: 1cd464b
Author: Benjamin Han <be...@siftsec.com>
Authored: Fri Dec 11 16:38:45 2015 -0800
Committer: Benjamin Han <be...@siftsec.com>
Committed: Fri Dec 11 16:38:45 2015 -0800

----------------------------------------------------------------------
 .../java/org/apache/tinkerpop/gremlin/structure/io/IoTest.java    | 3 ---
 1 file changed, 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/7578c603/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/structure/io/IoTest.java
----------------------------------------------------------------------
diff --git a/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/structure/io/IoTest.java b/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/structure/io/IoTest.java
index d2202f3..1dc3a42 100644
--- a/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/structure/io/IoTest.java
+++ b/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/structure/io/IoTest.java
@@ -450,9 +450,6 @@ public class IoTest {
                 throw new RuntimeException(ioe);
             }
 
-            System.out.println("\n\n\n\nSource: \n" + source.vertices() + "\n" + source.edges());
-            System.out.println("\n\n\n\nTarget: \n" + target.vertices() + "\n" + target.edges());
-
             assertEquals(IteratorUtils.count(source.vertices()), IteratorUtils.count(target.vertices()));
             assertEquals(IteratorUtils.count(source.edges()), IteratorUtils.count(target.edges()));
         }