summaryrefslogtreecommitdiff
path: root/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/replaceWithConstant/afterStaticNotFinal.java
blob: 17546ac1b633aa2b1da052076e51f1350cbfe181 (plain)
1
2
3
4
5
6
7
8
9
10
// "Replace with 'A.RADIUS'" "true"

class A {
  public static String RADIUS = "radius";

  public void myMethod(String propertyName) {
    if (RADIUS.equals(propertyName)) {
    }
  }
}