Polishing.

Fix proxy comparison.

See #3705
This commit is contained in:
Mark Paluch
2021-07-13 08:42:24 +02:00
parent 42ab7d2f63
commit 93b9f23b07

View File

@@ -167,7 +167,7 @@ class LazyLoadingProxyFactory {
}
if (ReflectionUtils.isEqualsMethod(method)) {
return proxyEquals(proxy, args[0]);
return proxyEquals(o, args[0]);
}
if (ReflectionUtils.isHashCodeMethod(method)) {