blob: 02691b8e268189f11440e150fdafabeecb20caa6 [file] [log] [blame]
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;
}
}
}