mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-30 10:20:15 +07:00
process c-style arrays in setInitializer (IDEA-20538 )
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
// "Move assignment to field declaration" "true"
|
||||
public class Foo {
|
||||
|
||||
protected boolean isString[] = new boolean[123];
|
||||
|
||||
public Foo() {
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
// "Move assignment to field declaration" "true"
|
||||
public class Foo {
|
||||
|
||||
protected boolean isString[] ;
|
||||
|
||||
public Foo() {
|
||||
isSt<caret>ring = new boolean[123];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user