blob: 08442f0a7203640fba0a80c0c2d05fbc035db86b [file] [log] [blame]
package com.siyeh.ipp.exceptions.splitTry;
import java.io.*;
public class WithCatch {
void foo(File file1, File file2) {
try (FileInputStream in = new FileInputStream(file1)) {
try (FileOutputStream out = new FileOutputStream(file2)) {
}
} catch (IOException e) {
e.printStackTrace();
}
}
}