Skip to content

Commit bb98cc9

Browse files
authored
Merge pull request #1673 from xdshent/dev
refactor: typo fix in CacheKey.java
2 parents ea6fe1f + 7792a4c commit bb98cc9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/org/apache/ibatis/cache/CacheKey.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public void updateAll(Object[] objects) {
4040
}
4141
};
4242

43-
private static final int DEFAULT_MULTIPLYER = 37;
43+
private static final int DEFAULT_MULTIPLIER = 37;
4444
private static final int DEFAULT_HASHCODE = 17;
4545

4646
private final int multiplier;
@@ -52,7 +52,7 @@ public void updateAll(Object[] objects) {
5252

5353
public CacheKey() {
5454
this.hashcode = DEFAULT_HASHCODE;
55-
this.multiplier = DEFAULT_MULTIPLYER;
55+
this.multiplier = DEFAULT_MULTIPLIER;
5656
this.count = 0;
5757
this.updateList = new ArrayList<>();
5858
}

0 commit comments

Comments
 (0)