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