mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
17 lines
321 B
Plaintext
17 lines
321 B
Plaintext
public class Try {
|
|
public int test() {
|
|
int result;
|
|
synchronized (this) {
|
|
try {
|
|
result = Integer.parseInt("1");
|
|
}
|
|
catch (NumberFormatException ex) {
|
|
throw ex;
|
|
}
|
|
}
|
|
int i = result;
|
|
return i;
|
|
}
|
|
|
|
}
|