blob: a8ba74e516aecbd0b16b34f44634ef74be8b21a1 [file] [log] [blame]
import java.io.*;
class Foo {
public void read() {
try {
final FileInputStream input = new FileInputStream(new File("foo"));
try {
}
finally {
input.close();
}
}
catch (FileNotFoundException ignored) {
}
catch (IOException e) {
}
}
}