mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 09:39:37 +07:00
10 lines
133 B
Java
10 lines
133 B
Java
class Test {
|
|
void foo(Integer integer) {
|
|
if (integer.intValue() == 0) {
|
|
}
|
|
}
|
|
|
|
void bar(){
|
|
foo(new Integer(1));
|
|
}
|
|
} |