mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-13 06:07:04 +07:00
18 lines
309 B
Java
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() {
|
|
|
|
}
|
|
}
|