Skip to content

Commit

Permalink
Make CoalesceStep extensible
Browse files Browse the repository at this point in the history
Related issue: https://issues.apache.org/jira/browse/TINKERPOP-2927

Signed-off-by: Oleksandr Porunov <alexandr.porunov@gmail.com>
  • Loading branch information
porunov committed Apr 19, 2023
1 parent d0e02f1 commit 03dc972
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
/**
* @author Daniel Kuppitz (http://gremlin.guru)
*/
public final class CoalesceStep<S, E> extends FlatMapStep<S, E> implements TraversalParent {
public class CoalesceStep<S, E> extends FlatMapStep<S, E> implements TraversalParent {

private List<Traversal.Admin<S, E>> coalesceTraversals;

Expand Down

0 comments on commit 03dc972

Please sign in to comment.