We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2273aad commit 2d9678cCopy full SHA for 2d9678c
src/main/java/com/yahoo/bullet/pubsub/PubSubMessage.java
@@ -117,6 +117,6 @@ public boolean equals(Object other) {
117
return false;
118
}
119
PubSubMessage otherMessage = (PubSubMessage) other;
120
- return (id.equals(otherMessage.getId()) && sequence == otherMessage.getSequence());
+ return id.equals(otherMessage.getId()) && sequence == otherMessage.getSequence();
121
122
0 commit comments