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