Github user analytically commented on a diff in the pull request:
https://github.com/apache/tinkerpop/pull/374#discussion_r73747869
--- Diff:
gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/strategy/decoration/SubgraphStrategy.java
---
@@ -156,20 +182,36 @@ private static void transferLabels(final Step from,
final Step to) {
private Builder() {
}
- public Builder vertexCriterion(final Traversal<Vertex, ?>
predicate) {
- vertexCriterion = predicate;
+ public Builder vertices(final Traversal<Vertex, ?>
vertexPredicate) {
+ this.vertexCriterion = vertexPredicate;
--- End diff --
Best rename the local vertexCriterion to vertexPredicate too no?
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---