Files
openide/java/java-tests/testData/refactoring/changeSignaturePropagation/ExceptionSimple.java.after
T
2013-05-06 21:21:52 +02:00

16 lines
244 B
Plaintext

class ChangeSignatureTest {
void foo() throws Exception {
}
void bar() throws Exception {
foo();
}
{
try {
bar();
} catch (Exception e) {
e.printStackTrace();
}
}
}