mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-28 04:37:32 +07:00
field can be local: exclude all fields used in fields initializers (IDEA-72649 )
This commit is contained in:
+3
@@ -0,0 +1,3 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<problems>
|
||||
</problems>
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
class Test {
|
||||
public static final Object FOO = new Test().foo;
|
||||
|
||||
private final String foo;
|
||||
|
||||
private Test() {
|
||||
foo = "some text";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user