mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-25 03:17:36 +07:00
9 lines
194 B
Java
9 lines
194 B
Java
import java.io.*;
|
|
|
|
class C {
|
|
void m(File file) throws IOException {
|
|
//comment after expr
|
|
try (FileInputStream fileInputStream = new FileInputStream(file)) {
|
|
}
|
|
}
|
|
} |