mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-09 19:45:13 +02:00
10 lines
219 B
Java
10 lines
219 B
Java
import java.io.*;
|
|||
|
|||
public class JavaDoubleClose {
|
|||
public void doubleClose(String path) throws IOException {
|
|||
FileInputStream fis = new FileInputStream(path);
|
|||
fis.close();
|
|||
fis.close();
|
|||
}
|
|||
}
|