mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 08:06:56 +07:00
15 lines
266 B
Java
15 lines
266 B
Java
class Temp {
|
|
private int <warning descr="Field can be converted to a local variable">length</warning> = 10;
|
|
private int[] array;
|
|
|
|
public Temp()
|
|
{
|
|
array = new int[length];
|
|
}
|
|
|
|
|
|
public int[] getArray()
|
|
{
|
|
return array;
|
|
}
|
|
} |