01: package method;
02:
03: import java.io.*;
04:
05: public class ExtractMethodTestSeven {
06: public void method(File file) {
07: System.out.println("This is before");
08: try {
09: PrintWriter output = new PrintWriter(new FileWriter(file));
10:
11: output.println("Line #1");
12:
13: output.close();
14: } catch (IOException ioe) {
15: ioe.printStackTrace();
16: }
17: System.out.println("This is after");
18: }
19: }
|