Files
openide/java/java-tests/testData/inspection/dataFlow/fixture/ReportConstantReferences_ReplaceWithString.java
T

8 lines
202 B
Java

class Test {
public static final String CONST = "foo bar";
private void test() {
String s = CONST;
System.out.println(<caret><warning descr="Value 's' is always 'CONST'">s</warning>);
}
}