You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by sp...@apache.org on 2015/04/10 17:38:42 UTC

[2/2] incubator-tinkerpop git commit: Removed todos - tracked by TINKERPOP3-624

Removed todos - tracked by TINKERPOP3-624


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

Branch: refs/heads/TINKERPOP3-581
Commit: 7ee771f7548004b8cd7ac8e8c1661537b499b36c
Parents: 34f826c
Author: Stephen Mallette <sp...@genoprime.com>
Authored: Fri Apr 10 11:38:07 2015 -0400
Committer: Stephen Mallette <sp...@genoprime.com>
Committed: Fri Apr 10 11:38:07 2015 -0400

----------------------------------------------------------------------
 .../tinkerpop/gremlin/tinkergraph/structure/TinkerGraph.java       | 2 --
 1 file changed, 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/7ee771f7/tinkergraph-gremlin/src/main/java/org/apache/tinkerpop/gremlin/tinkergraph/structure/TinkerGraph.java
----------------------------------------------------------------------
diff --git a/tinkergraph-gremlin/src/main/java/org/apache/tinkerpop/gremlin/tinkergraph/structure/TinkerGraph.java b/tinkergraph-gremlin/src/main/java/org/apache/tinkerpop/gremlin/tinkergraph/structure/TinkerGraph.java
index 4cb310e..dda6ad2 100644
--- a/tinkergraph-gremlin/src/main/java/org/apache/tinkerpop/gremlin/tinkergraph/structure/TinkerGraph.java
+++ b/tinkergraph-gremlin/src/main/java/org/apache/tinkerpop/gremlin/tinkergraph/structure/TinkerGraph.java
@@ -239,13 +239,11 @@ public class TinkerGraph implements Graph {
 
     @Override
     public Iterator<Vertex> vertices(final Object... vertexIds) {
-        // todo: what if we have Reference/DetachedVertex???????????????????????????
         return createElementIterator(Vertex.class, vertices, vertexIdManager, vertexIds);
     }
 
     @Override
     public Iterator<Edge> edges(final Object... edgeIds) {
-        // todo: what if we have Reference/DetachedVertex???????????????????????????
         return createElementIterator(Edge.class, edges, edgeIdManager, edgeIds);
     }