blob: 062cf0bb06742d16b93ae6f009bc9300601da5a4 [file] [log] [blame]
package com.siyeh.ipp.exceptions.mergeTry;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
class OldStyle {
void foo(File file1) {
try {
FileInputStream in = new FileInputStream(file1);
} catch (FileNotFoundException e) {
// log
} catch (Exception e) {
// log
}
}
}