File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed
core/sdk-core/src/main/java/software/amazon/awssdk/core Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -166,8 +166,7 @@ public boolean equals(Object o) {
166
166
Objects .equals (apiCallTimeout , that .apiCallTimeout ) &&
167
167
Objects .equals (apiCallAttemptTimeout , that .apiCallAttemptTimeout ) &&
168
168
Objects .equals (signer , that .signer ) &&
169
- Objects .equals (metricPublishers , that .metricPublishers ) &&
170
- Objects .equals (executionAttributes , that .executionAttributes );
169
+ Objects .equals (metricPublishers , that .metricPublishers );
171
170
}
172
171
173
172
@ Override
@@ -180,7 +179,6 @@ public int hashCode() {
180
179
hashCode = 31 * hashCode + Objects .hashCode (apiCallAttemptTimeout );
181
180
hashCode = 31 * hashCode + Objects .hashCode (signer );
182
181
hashCode = 31 * hashCode + Objects .hashCode (metricPublishers );
183
- hashCode = 31 * hashCode + Objects .hashCode (executionAttributes );
184
182
return hashCode ;
185
183
}
186
184
You can’t perform that action at this time.
0 commit comments