summaryrefslogtreecommitdiff
path: root/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/replaceWithConstant/beforeStaticNotFinal.java
blob: 30b6308e7a17b4269eb2878fe3d7cf063496728c (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 ("rad<caret>ius".equals(propertyName)) {
    }
  }
}