mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 23:20:57 +07:00
12 lines
207 B
Java
12 lines
207 B
Java
// "Delete catch for 'java.io.IOException'" "true"
|
|
import java.io.*;
|
|
|
|
class a {
|
|
void f(boolean f) {
|
|
if (f) {
|
|
System.out.println();
|
|
System.out.println();
|
|
}
|
|
}
|
|
}
|