Skip to content

Commit 3966afa

Browse files
committed
Modify Comments: Configuration.StrictMap<V> put(String key, V value) comments update.
1 parent ffdbf28 commit 3966afa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/apache/ibatis/session/Configuration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1067,7 +1067,7 @@ public StrictMap<V> conflictMessageProducer(BiFunction<V, V, String> conflictMes
10671067
@SuppressWarnings("unchecked")
10681068
public V put(String key, V value) {
10691069
if (containsKey(key)) {
1070-
throw new IllegalArgumentException(name + " already contains value for " + key
1070+
throw new IllegalArgumentException(name + " already contains key for " + key
10711071
+ (conflictMessageProducer == null ? "" : conflictMessageProducer.apply(super.get(key), value)));
10721072
}
10731073
if (key.contains(".")) {

0 commit comments

Comments
 (0)