We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ea6fe1f + 7792a4c commit bb98cc9Copy full SHA for bb98cc9
src/main/java/org/apache/ibatis/cache/CacheKey.java
@@ -40,7 +40,7 @@ public void updateAll(Object[] objects) {
40
}
41
};
42
43
- private static final int DEFAULT_MULTIPLYER = 37;
+ private static final int DEFAULT_MULTIPLIER = 37;
44
private static final int DEFAULT_HASHCODE = 17;
45
46
private final int multiplier;
@@ -52,7 +52,7 @@ public void updateAll(Object[] objects) {
52
53
public CacheKey() {
54
this.hashcode = DEFAULT_HASHCODE;
55
- this.multiplier = DEFAULT_MULTIPLYER;
+ this.multiplier = DEFAULT_MULTIPLIER;
56
this.count = 0;
57
this.updateList = new ArrayList<>();
58
0 commit comments