// "Replace with 'replaceAll()' call" "true" import java.util.HashMap; import java.util.Map; public class Main { public void test() { String k = "another var"; String key = "one more"; Map map = new HashMap<>(); map.put("foo", "bar"); for (Map.Entry entry : map.entrySet()) { map.put(entry.getKey(), k); } } }