mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 16:36:56 +07:00
1. VariableNameGenerator instead of codeStyleManager#suggestUniqueVariableName 2. use tracker for inner comments 3. simplified references search using various util methods 4. added option to disable replaceAll suggestion
16 lines
389 B
Java
16 lines
389 B
Java
// "Replace with 'replaceAll' method 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<String, String> map = new HashMap<>();
|
|
map.put("foo", "bar");
|
|
for<caret> (Map.Entry<String, String> entry : map.entrySet()) {
|
|
map.put(entry.getKey(), k);
|
|
}
|
|
}
|
|
} |