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/02/08 16:24:53 UTC

incubator-tinkerpop git commit: minor nothing.

Repository: incubator-tinkerpop
Updated Branches:
  refs/heads/TINKERPOP-1131 388d1f25f -> ba22c7aad


minor nothing.


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

Branch: refs/heads/TINKERPOP-1131
Commit: ba22c7aadab066e1f685368cc51faca0b7597831
Parents: 388d1f2
Author: Marko A. Rodriguez <ok...@gmail.com>
Authored: Sun Feb 7 19:38:13 2016 -0700
Committer: Marko A. Rodriguez <ok...@gmail.com>
Committed: Sun Feb 7 19:38:13 2016 -0700

----------------------------------------------------------------------
 .../gremlin/process/computer/traversal/TraverserExecutor.java      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/ba22c7aa/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/computer/traversal/TraverserExecutor.java
----------------------------------------------------------------------
diff --git a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/computer/traversal/TraverserExecutor.java b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/computer/traversal/TraverserExecutor.java
index 2df682c..04f33f2 100644
--- a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/computer/traversal/TraverserExecutor.java
+++ b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/computer/traversal/TraverserExecutor.java
@@ -61,9 +61,9 @@ public final class TraverserExecutor {
             }
         }
         // while there are still local traversers, process them until they leave the vertex or halt (i.e. isHalted()).
-        Step<?, ?> previousStep = EmptyStep.instance();
         while (!toProcessTraversers.isEmpty()) {
             // process local traversers and if alive, repeat, else halt.
+            Step<?, ?> previousStep = EmptyStep.instance();
             Iterator<Traverser.Admin<Object>> traversers = toProcessTraversers.iterator();
             while (traversers.hasNext()) {
                 final Traverser.Admin<Object> traverser = traversers.next();