mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-08 21:06:52 +07:00
18 lines
300 B
Java
18 lines
300 B
Java
// "Fix all 'Field can be local' 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() {
|
|
|
|
}
|
|
}
|