mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-16 08:39:59 +07:00
11 lines
157 B
Java
11 lines
157 B
Java
class Test {
|
|
void foo(Param param1) {
|
|
if (param1.getI().lenght == 0) {
|
|
}
|
|
Param param = null;
|
|
}
|
|
|
|
void bar(){
|
|
foo(new Param(1, 2));
|
|
}
|
|
} |