mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 16:36:56 +07:00
21 lines
332 B
Java
21 lines
332 B
Java
import java.io.FileInputStream;
|
|
|
|
class Bar {
|
|
boolean myShouldAccept = true;
|
|
|
|
public void run() {
|
|
while (myShouldAccept) {
|
|
try {
|
|
FileInputStream fs = new FileInputStream("a");
|
|
try {
|
|
}
|
|
finally {
|
|
fs.close();
|
|
}
|
|
}
|
|
catch (Exception ignore) {
|
|
}
|
|
}
|
|
}
|
|
}
|