mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-29 07:03:37 +07:00
GitOrigin-RevId: 088ce28eb3b8cbbce9aa1cfc1b073fef2dab12ce
13 lines
277 B
Java
13 lines
277 B
Java
// "Replace with 'replaceAll()' call" "false"
|
|
|
|
public class Main {
|
|
public void test() {
|
|
Map<String, String> map = new HashMap<>();
|
|
map.put("foo", "bar");
|
|
String s = "foo";
|
|
s += "bar";
|
|
for<caret> (String k : map.keySet()) {
|
|
map.put(k, s);
|
|
}
|
|
}
|
|
} |