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 2016/08/04 22:40:34 UTC

[05/24] tinkerpop git commit: Undo previous CTR'd commit that made ExpandableStepIterator non-final

Undo previous CTR'd commit that made ExpandableStepIterator non-final

@okram -1'd on the dev list: https://lists.apache.org/thread.html/332d1a0061fb32b63a8073084342deff637ebf271cf329bf7e58c227@%3Cdev.tinkerpop.apache.org%3E


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

Branch: refs/heads/TINKERPOP-1278
Commit: 168097b1672ea59dedae4a0fe1cbd3100862ef25
Parents: 4b9212e
Author: Stephen Mallette <sp...@genoprime.com>
Authored: Wed Jul 27 07:59:49 2016 -0400
Committer: Stephen Mallette <sp...@genoprime.com>
Committed: Wed Jul 27 07:59:49 2016 -0400

----------------------------------------------------------------------
 .../process/traversal/step/util/ExpandableStepIterator.java        | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/168097b1/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/step/util/ExpandableStepIterator.java
----------------------------------------------------------------------
diff --git a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/step/util/ExpandableStepIterator.java b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/step/util/ExpandableStepIterator.java
index f5bd239..09e82d0 100644
--- a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/step/util/ExpandableStepIterator.java
+++ b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/step/util/ExpandableStepIterator.java
@@ -29,7 +29,7 @@ import java.util.Iterator;
 /**
  * @author Marko A. Rodriguez (http://markorodriguez.com)
  */
-public class ExpandableStepIterator<S> implements Iterator<Traverser.Admin<S>>, Serializable {
+public final class ExpandableStepIterator<S> implements Iterator<Traverser.Admin<S>>, Serializable {
 
     private final TraverserSet<S> traverserSet = new TraverserSet<>();
     private final MultiIterator<Traverser.Admin<S>> traverserIterators = new MultiIterator<>();