Removed unnecessary component interface, some cleanup
[fedora-idea.git] / testData / refactoring / extractMethod / ExitPoints4.java
blob6c6c395cb81bdb3cec435a14d2284318ccaa1ae4
1 class Test {
2 int method() {
3 <selection>try {
4 if(cond1) return 0;
5 else if(cond2) return 1;
6 System.out.println("Text");
7 } finally {
8 doSomething();
9 }</selection>
10 return 12;