File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed
src/main/java/org/springframework/retry/annotation Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change 11/*
2- * Copyright 2006-2023 the original author or authors.
2+ * Copyright 2006-2024 the original author or authors.
33 *
44 * Licensed under the Apache License, Version 2.0 (the "License");
55 * you may not use this file except in compliance with the License.
2121import java .util .ArrayList ;
2222import java .util .LinkedHashSet ;
2323import java .util .List ;
24+ import java .util .Objects ;
2425import java .util .Set ;
2526import java .util .concurrent .atomic .AtomicBoolean ;
2627
6869 * @author Markus Heiden
6970 * @author Gary Russell
7071 * @author Yanming Zhou
72+ * @author Evgeny Lazarev
7173 * @since 1.1
7274 *
7375 */
@@ -242,6 +244,11 @@ public boolean equals(Object other) {
242244 return ObjectUtils .nullSafeEquals (this .methodResolver , otherAdvisor .methodResolver );
243245 }
244246
247+ @ Override
248+ public int hashCode () {
249+ return Objects .hash (this .methodResolver );
250+ }
251+
245252 }
246253
247254 private final class AnnotationClassOrMethodFilter extends AnnotationClassFilter {
You can’t perform that action at this time.
0 commit comments