Files
Bas Leijdekkers b4544c7a42 Java: clearer name for inspection and quick-fix
GitOrigin-RevId: 0ee29991b00d4ac8341c031a4a111b23bb44b800
2025-02-04 14:01:33 +00:00

18 lines
309 B
Java

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