mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-05 23:46:49 +07:00
fix regression introduced by enabling extract variable from field initializer GitOrigin-RevId: c6dd97ec10ecec32f48a337482afb6900464f668
6 lines
131 B
Java
6 lines
131 B
Java
class Test {
|
|
public static final String xxx = "unused";
|
|
@SuppressWarnings(xxx)
|
|
String myField;
|
|
String myField1 = xxx;
|
|
} |