mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
move members: conflict when move final field without initializer (IDEA-83353)
This commit is contained in:
+4
@@ -0,0 +1,4 @@
|
||||
public class A {
|
||||
|
||||
public static final String ONE;
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
public class B {
|
||||
|
||||
static {
|
||||
A.ONE = "foo";
|
||||
}
|
||||
}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
public class A {
|
||||
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
public class B {
|
||||
public static final String ONE;
|
||||
|
||||
static {
|
||||
ONE = "foo";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user