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

    https://github.com/apache/incubator-hawq/pull/1379#discussion_r202108154
  
    --- Diff: 
pxf/pxf-service/src/main/java/org/apache/hawq/pxf/service/SessionId.java ---
    @@ -65,12 +74,15 @@ public int hashCode() {
          * {@inheritDoc}
          */
         @Override
    -    public boolean equals(Object other) {
    -        if (!(other instanceof SessionId)) {
    -            return false;
    -        }
    -        SessionId that = (SessionId) other;
    -        return this.sessionId.equals(that.sessionId);
    +    public boolean equals(Object obj) {
    +        if (obj == null) return false;
    +        if (obj == this) return true;
    +        if (obj.getClass() != getClass()) return false;
    +
    +        SessionId that = (SessionId) obj;
    +        return new EqualsBuilder()
    +                .append(sessionId, that.sessionId)
    +                .isEquals();
    --- End diff --
    
    EqualsBuilder is not needed for comparing strings


---

Reply via email to