mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 13:20:56 +07:00
11 lines
216 B
Java
11 lines
216 B
Java
import java.io.File;
|
|
import java.io.FileInputStream;
|
|
import java.io.IOException;
|
|
|
|
class Foo {
|
|
|
|
void test(File f) throws IOException {
|
|
try(FileInputStream temp = new FileInputStream(f)) {
|
|
}
|
|
}
|
|
} |