mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-06 18:06:58 +07:00
forcePsiPostprocessAndRestoreElement may invalidate variable initializer GitOrigin-RevId: 31b99804e5603cff36494ecbf9f98c1716b13d22
10 lines
209 B
Java
10 lines
209 B
Java
// "Split into declaration and assignment" "true"
|
|
|
|
class Foo {
|
|
{
|
|
<caret>int fieldIndexes = getFieldIndexes(Hellonew String[]{""});
|
|
}
|
|
public int getFieldIndexes(String[] columns) {
|
|
return 0;
|
|
}
|
|
} |