Skip to content

Commit 2d9678c

Browse files
author
Shriram Kumar
committed
Removing extra parantheses
1 parent 2273aad commit 2d9678c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/yahoo/bullet/pubsub/PubSubMessage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,6 @@ public boolean equals(Object other) {
117117
return false;
118118
}
119119
PubSubMessage otherMessage = (PubSubMessage) other;
120-
return (id.equals(otherMessage.getId()) && sequence == otherMessage.getSequence());
120+
return id.equals(otherMessage.getId()) && sequence == otherMessage.getSequence();
121121
}
122122
}

0 commit comments

Comments
 (0)