Merge branch '6.0.x'
This commit is contained in:
@@ -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