mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 15:35:40 +07:00
GitOrigin-RevId: 370bf973497cc428ff1fa8047684c62e793941be
10 lines
251 B
Java
10 lines
251 B
Java
class ClassName {
|
|
private static String <warning descr="Field can be converted to a local variable">SOME_CONSTANT</warning> = "XXX";
|
|
|
|
public ClassName() {
|
|
this(SOME_CONSTANT);
|
|
}
|
|
|
|
public ClassName(String somethingElse) {
|
|
}
|
|
} |