mirror of
https://github.com/spring-projects/spring-framework.git
synced 2026-09-25 08:19:01 +00:00
Merge branch '6.0.x'
This commit is contained in:
+2
-3
@@ -43,10 +43,9 @@ public class SpringFlushSynchronization implements TransactionSynchronization {
|
||||
SessionFactoryUtils.flush(this.session, false);
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public boolean equals(@Nullable Object obj) {
|
||||
return (this == obj || (obj instanceof SpringFlushSynchronization that && this.session == that.session));
|
||||
public boolean equals(@Nullable Object other) {
|
||||
return (this == other || (other instanceof SpringFlushSynchronization that && this.session == that.session));
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user