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

    https://github.com/apache/tinkerpop/pull/699#discussion_r135642190
  
    --- 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 --
    
    This class does not have a `hashCode()` method. It should since it 
implements `equals()`. Its easy, its just `this.t.hashCode()`.


---
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