Polishing

This commit is contained in:
Juergen Hoeller
2023-07-19 01:25:20 +02:00
parent 2f33e77ab4
commit c64a322e19
9 changed files with 23 additions and 21 deletions

View File

@@ -370,8 +370,8 @@ class CglibAopProxy implements AopProxy, Serializable {
@Override
public boolean equals(@Nullable Object other) {
return (this == other || (other instanceof CglibAopProxy cglibAopProxy &&
AopProxyUtils.equalsInProxy(this.advised, cglibAopProxy.advised)));
return (this == other || (other instanceof CglibAopProxy that &&
AopProxyUtils.equalsInProxy(this.advised, that.advised)));
}
@Override