Github user dkuppitz commented on a diff in the pull request:

    https://github.com/apache/tinkerpop/pull/699#discussion_r135670162
  
    --- Diff: 
gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/traverser/B_O_Traverser.java
 ---
    @@ -62,10 +62,12 @@ public void setStepId(final String stepId) {
             this.future = stepId;
         }
     
    +    protected final boolean equals(final B_O_Traverser other) {
    +        return super.equals(other) && other.future.equals(this.future);
    +    }
    +
         @Override
    --- End diff --
    
    That's intentional. B_O_Traverser's hashcode is the same as O_Traverser's. 
Same story below. In both cases equals() will do the "deep" check, but 
hashcode() ignores fields that are unlikely different.


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to