mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 06:05:01 +07:00
extract class: normalize fields declarations (IDEA-153457)
This commit is contained in:
+3
@@ -0,0 +1,3 @@
|
||||
public class Extracted {
|
||||
static final int[] myT = {1, 2};
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
class Test {
|
||||
static final int[] myF = {};
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
class Test {
|
||||
static final int[] myT = {1,2}, myF = {};
|
||||
}
|
||||
Reference in New Issue
Block a user