You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by dk...@apache.org on 2018/03/09 18:26:15 UTC

tinkerpop git commit: bla

Repository: tinkerpop
Updated Branches:
  refs/heads/TRAVIS-TEST c8741e562 -> 531932715


bla


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

Branch: refs/heads/TRAVIS-TEST
Commit: 53193271596caecf3384c278772fc35210df8473
Parents: c8741e5
Author: Daniel Kuppitz <da...@hotmail.com>
Authored: Fri Mar 9 11:26:10 2018 -0700
Committer: Daniel Kuppitz <da...@hotmail.com>
Committed: Fri Mar 9 11:26:10 2018 -0700

----------------------------------------------------------------------
 .../process/traversal/strategy/decoration/SubgraphStrategy.java  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/53193271/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/strategy/decoration/SubgraphStrategy.java
----------------------------------------------------------------------
diff --git a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/strategy/decoration/SubgraphStrategy.java b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/strategy/decoration/SubgraphStrategy.java
index 548e14e..241129b 100644
--- a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/strategy/decoration/SubgraphStrategy.java
+++ b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/strategy/decoration/SubgraphStrategy.java
@@ -93,8 +93,8 @@ public final class SubgraphStrategy extends AbstractTraversalStrategy<TraversalS
         } else {
             final Traversal.Admin<Edge, ?> vertexPredicate;
             vertexPredicate = __.<Edge>and(
-                    __.inV().filter(this.vertexCriterion.clone()),
-                    __.outV().filter(this.vertexCriterion).clone()).asAdmin();
+                    __.inV().filter(this.vertexCriterion.asAdmin().clone()),
+                    __.outV().filter(this.vertexCriterion).asAdmin().clone()).asAdmin();
 
             // if there is a vertex predicate then there is an implied edge filter on vertices even if there is no
             // edge predicate provided by the user.