19202122232425
super(); } public PathTraverser(final T t, final Traversal.SideEffects sideEffects) { super(t, sideEffects); this.path = new ImmutablePath(Collections.emptySet(), t); }
24252627282930
this.path = new ImmutablePath(Collections.emptySet(), t); } public PathTraverser(final String label, final T t, final Traversal.SideEffects sideEffects) { super(t, sideEffects); this.path = new ImmutablePath(label, t); }