mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
19 lines
246 B
Java
19 lines
246 B
Java
class A {
|
|
{
|
|
Object o;
|
|
|
|
try {
|
|
o = newMethod();
|
|
}
|
|
catch (Exception e) {
|
|
}
|
|
|
|
o.f();
|
|
}
|
|
|
|
private Object newMethod() {
|
|
Object o;
|
|
o = foo();
|
|
return o;
|
|
}
|
|
} |