mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-08 21:52:48 +07:00
11 lines
202 B
Java
11 lines
202 B
Java
class Test{
|
|
|
|
public void t() {
|
|
Object <warning descr="Variable 'v' can have 'final' modifier">v</warning>;
|
|
if (true) {
|
|
v = new Object();
|
|
} else {
|
|
v = new Object();
|
|
}
|
|
}
|
|
} |