mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
16 lines
292 B
Java
16 lines
292 B
Java
public class Try {
|
|
public int test() {
|
|
int i = another();
|
|
return i;
|
|
}
|
|
|
|
public synchronized int another<caret>() {
|
|
try {
|
|
return Integer.parseInt("1");
|
|
}
|
|
catch (NumberFormatException ex) {
|
|
throw ex;
|
|
}
|
|
}
|
|
}
|