mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-19 18:14:57 +07:00
6fbd5cc914
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)
9 lines
127 B
Java
9 lines
127 B
Java
// "Convert to local" "true"
|
|
class TestInitializer {
|
|
|
|
{
|
|
boolean field = true;
|
|
System.out.println(field);
|
|
}
|
|
|
|
} |