blob: d6e9600d64e2140a6dbf4c7d81a272da2ec48480 [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) {
<caret>try {
try {
FileInputStream in = new FileInputStream(file1);
} catch (FileNotFoundException e) {
// log
}
} catch (Exception e) {
// log
}
}
}