mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-25 00:29:34 +07:00
14 lines
272 B
Java
14 lines
272 B
Java
public class Test {
|
|
int method() {
|
|
try {
|
|
return newMethod("Text", 0);
|
|
} finally {
|
|
return newMethod("!!!", 1);
|
|
}
|
|
}
|
|
|
|
private int newMethod(String s, int i) {
|
|
System.out.println(s);
|
|
return i;
|
|
}
|
|
} |