hairy fix for finding return statements via control flow in 'extract method' (IDEADEV...
[fedora-idea.git] / testData / refactoring / extractMethod / ReturnFromTry.java
blobc324de5954e88e162b2d2d1388b9d6dabc8fa9c4
1 class A {
2 public String method() {
3 try {
4 <selection>try {
5 return "";
7 finally {
8 System.out.println("f");
9 }</selection>
11 catch (Error e) {
14 return "";