You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by st...@apache.org on 2017/02/10 16:55:16 UTC

[14/45] commons-rdf git commit: commented out debug statement

commented out debug statement


Project: http://git-wip-us.apache.org/repos/asf/commons-rdf/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-rdf/commit/4bc08f6e
Tree: http://git-wip-us.apache.org/repos/asf/commons-rdf/tree/4bc08f6e
Diff: http://git-wip-us.apache.org/repos/asf/commons-rdf/diff/4bc08f6e

Branch: refs/heads/COMMONSRDF-47
Commit: 4bc08f6e31cec45179b8c99b9905a39ddeaac746
Parents: c729469
Author: Stian Soiland-Reyes <st...@apache.org>
Authored: Mon Jan 23 11:57:45 2017 +0000
Committer: Stian Soiland-Reyes <st...@apache.org>
Committed: Mon Jan 23 11:57:45 2017 +0000

----------------------------------------------------------------------
 .../test/java/org/apache/commons/rdf/api/AbstractGraphTest.java    | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-rdf/blob/4bc08f6e/api/src/test/java/org/apache/commons/rdf/api/AbstractGraphTest.java
----------------------------------------------------------------------
diff --git a/api/src/test/java/org/apache/commons/rdf/api/AbstractGraphTest.java b/api/src/test/java/org/apache/commons/rdf/api/AbstractGraphTest.java
index e18ca08..89e91f2 100644
--- a/api/src/test/java/org/apache/commons/rdf/api/AbstractGraphTest.java
+++ b/api/src/test/java/org/apache/commons/rdf/api/AbstractGraphTest.java
@@ -411,6 +411,8 @@ public abstract class AbstractGraphTest {
 
         // Remove should also honour any case
         graph.remove(example1, null, mixed);
+//        Triple t = graph.stream().findAny().get();
+//        System.out.println(t);
         // no more greetings of any kind
         assertFalse(graph.contains(null, greeting, null));
     }