Merge branch '6.2.x'

This commit is contained in:
Sam Brannen
2024-12-04 12:04:37 +01:00
3 changed files with 11 additions and 7 deletions

View File

@@ -668,7 +668,8 @@ public class AdvisedSupport extends ProxyConfig implements Advised {
@Override
public boolean equals(@Nullable Object other) {
return (this == other || (other instanceof MethodCacheKey that && this.method == that.method));
return (this == other || (other instanceof MethodCacheKey that &&
(this.method == that.method || this.method.equals(that.method))));
}
@Override