// "Fix all 'Field can be local' problems in file" "false" class TestFieldConversion { private static int someInt = 0; public TestFieldConversion() { int usingThatInt = someInt; } /** * Referencing that value here {@value #someInt} */ public void someMethod() { } }