Skip to content

Commit 56eda1f

Browse files
committed
Revert "Add param to hashcode and equals methods"
This reverts commit 5d5411f.
1 parent 570bdc1 commit 56eda1f

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

core/sdk-core/src/main/java/software/amazon/awssdk/core/RequestOverrideConfiguration.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -166,8 +166,7 @@ public boolean equals(Object o) {
166166
Objects.equals(apiCallTimeout, that.apiCallTimeout) &&
167167
Objects.equals(apiCallAttemptTimeout, that.apiCallAttemptTimeout) &&
168168
Objects.equals(signer, that.signer) &&
169-
Objects.equals(metricPublishers, that.metricPublishers) &&
170-
Objects.equals(executionAttributes, that.executionAttributes);
169+
Objects.equals(metricPublishers, that.metricPublishers);
171170
}
172171

173172
@Override
@@ -180,7 +179,6 @@ public int hashCode() {
180179
hashCode = 31 * hashCode + Objects.hashCode(apiCallAttemptTimeout);
181180
hashCode = 31 * hashCode + Objects.hashCode(signer);
182181
hashCode = 31 * hashCode + Objects.hashCode(metricPublishers);
183-
hashCode = 31 * hashCode + Objects.hashCode(executionAttributes);
184182
return hashCode;
185183
}
186184

0 commit comments

Comments
 (0)