Skip to content

Commit 4c7c3b7

Browse files
committed
GH-1352: Checkstyle Fix
Generated `equals()`.
1 parent 38e15b6 commit 4c7c3b7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

spring-rabbit-stream/src/main/java/org/springframework/rabbit/stream/support/StreamMessageProperties.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,8 @@ public void setReplyToGroupId(String replyToGroupId) {
168168
public int hashCode() {
169169
final int prime = 31;
170170
int result = super.hashCode();
171-
result = prime * result + Objects.hash(creationTime, groupId, groupSequence, replyToGroupId, subject, to);
171+
result = prime * result + Objects.hash(this.creationTime, this.groupId, this.groupSequence, this.replyToGroupId,
172+
this.subject, this.to);
172173
return result;
173174
}
174175

0 commit comments

Comments
 (0)