Files
openide/java/java-tests/testData/refactoring/changeSignature/AlreadyHandled_after.java
Dmitry Jemerov b854be0323 test++
2009-09-10 20:09:11 +04:00

9 lines
113 B
Java

class Test {
void foo () throws Exception {
}
void bar () throws Exception {
foo();
}
}