Skip to content

Commit

Permalink
[ISSUE #397]Remove subscription session failed error
Browse files Browse the repository at this point in the history
  • Loading branch information
xwm1992 committed Jun 25, 2021
1 parent ade47ee commit 9054f10
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -326,10 +326,10 @@ public boolean isAvailable(String topic) {
return true;
}

@Override
public int hashCode() {
int code = 37 + (client != null ? client.hashCode() : 0) + (context != null ? context.hashCode() : 0)
+ (sessionState != null ? sessionState.hashCode() : 0);
return code;
}
// @Override
// public int hashCode() {
// int code = 37 + (client != null ? client.hashCode() : 0) + (context != null ? context.hashCode() : 0)
// + (sessionState != null ? sessionState.hashCode() : 0);
// return code;
// }
}

0 comments on commit 9054f10

Please sign in to comment.