Polishing

This commit is contained in:
Juergen Hoeller
2023-07-19 01:17:25 +02:00
parent 3a8c0dbd8a
commit a7b7466274
22 changed files with 93 additions and 86 deletions

View File

@@ -159,8 +159,8 @@ public class RollbackRuleAttribute implements Serializable{
if (!(other instanceof RollbackRuleAttribute)) {
return false;
}
RollbackRuleAttribute rhs = (RollbackRuleAttribute) other;
return this.exceptionPattern.equals(rhs.exceptionPattern);
RollbackRuleAttribute otherAttr = (RollbackRuleAttribute) other;
return this.exceptionPattern.equals(otherAttr.exceptionPattern);
}
@Override