mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-19 20:37:12 +07:00
1. localVariableIsCopy -> isLocalVariableCopy 2. added more precise convert to local quick fix message (with info about to where field will be inlined) 3. fixed tests for new convert to local quick fix messages 4. removed inlineVariable(PsiVariable, PsiExpression)
11 lines
224 B
Java
11 lines
224 B
Java
// "Convert field to local variable in method 'Test'" "true"
|
|
class Test {
|
|
|
|
private final String f<caret>ield;
|
|
|
|
public Test(String param) {
|
|
field = param;
|
|
System.out.println(field == null ? "null" : field);
|
|
}
|
|
|
|
} |