[2.15.0] 优化子线程切主线程操作

This commit is contained in:
renwj
2023-03-27 20:40:51 +08:00
parent e14bde9129
commit 0beb152ab0
5 changed files with 64 additions and 53 deletions

View File

@@ -21,7 +21,7 @@ public class ObjectHashCodeUtils {
if (value != null) {
return value;
}
int hashCode = System.identityHashCode(obj);
int hashCode = - System.identityHashCode(obj);
hashCodes.put(name, hashCode);
return hashCode;
}