mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 17:51:09 +07:00
8 lines
143 B
Java
8 lines
143 B
Java
// "Replace with 'put()'" "true-preview"
|
|
import java.util.*;
|
|
|
|
class Test {
|
|
void test(Map<Integer, String> map) {
|
|
map.put(1, "one");
|
|
}
|
|
} |