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 4886b75 commit dfc2ee9Copy full SHA for dfc2ee9
src/main/java/org/springframework/retry/annotation/RetryConfiguration.java
@@ -21,6 +21,7 @@
21
import java.util.ArrayList;
22
import java.util.LinkedHashSet;
23
import java.util.List;
24
+import java.util.Objects;
25
import java.util.Set;
26
import java.util.concurrent.atomic.AtomicBoolean;
27
@@ -242,6 +243,11 @@ public boolean equals(Object other) {
242
243
return ObjectUtils.nullSafeEquals(this.methodResolver, otherAdvisor.methodResolver);
244
}
245
246
+ @Override
247
+ public int hashCode() {
248
+ return Objects.hash(methodResolver);
249
+ }
250
+
251
252
253
private final class AnnotationClassOrMethodFilter extends AnnotationClassFilter {
0 commit comments