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

14 lines
302 B
Java

// "Replace with 'replaceAll()' call" "true"
import java.util.HashMap;
import java.util.Map;
public class Main {
public void test() {
Map<String, String> map = new HashMap<>();
map.put("foo", "bar");
for<caret> (String key : map.keySet()) {
map.put(key, map.get(key));
}
}
}