Files
2026-01-16 13:57:13 +00:00

12 lines
289 B
Java

// "Replace with 'merge()' call" "GENERIC_ERROR_OR_WARNING"
import java.util.Map;
public class Main {
public void testMerge(Map<String, Integer> map, String key) {
if(map.get(key)<caret> == null) {
map.put(key, 1)
} else {
map.put(key, map.get(key) + 1);
}
}
}