mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-07-04 15:51:40 +07:00
16 lines
377 B
Java
16 lines
377 B
Java
// "Add exception to existing catch clause" "true"
|
|
import java.io.*;
|
|
|
|
|
|
public class c1 {
|
|
void f() {
|
|
FileInputStream fis = null;
|
|
try {
|
|
fis = new FileInputStream("");
|
|
DataInputStream dis = new DataInputStream(fis);
|
|
dis.<caret>readInt();
|
|
} catch (IOException e) {
|
|
e.printStackTrace();
|
|
}
|
|
}
|
|
} |