mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 00:20:55 +07:00
allow to inline array definition when accessExpression is used for write; exclude new expressions
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
public class A {
|
||||
|
||||
public void testInlineRefactoring() {
|
||||
ar()[1] = 22;
|
||||
}
|
||||
|
||||
private int[] ar() {
|
||||
return new int[0];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user