diff --git a/plugins/InspectionGadgets/test/com/siyeh/igfixes/toobroadthrows/NotFoundInsteadOfIOException.after.java b/plugins/InspectionGadgets/test/com/siyeh/igfixes/toobroadthrows/NotFoundInsteadOfIOException.after.java index 3194b1c29e55..2f6b40f1f13a 100644 --- a/plugins/InspectionGadgets/test/com/siyeh/igfixes/toobroadthrows/NotFoundInsteadOfIOException.after.java +++ b/plugins/InspectionGadgets/test/com/siyeh/igfixes/toobroadthrows/NotFoundInsteadOfIOException.after.java @@ -1,3 +1,4 @@ +import java.io.*; class Foo{ void foo() throws FileNotFoundException { throw new FileNotFoundException(); diff --git a/plugins/InspectionGadgets/test/com/siyeh/igfixes/toobroadthrows/NotFoundInsteadOfIOException.java b/plugins/InspectionGadgets/test/com/siyeh/igfixes/toobroadthrows/NotFoundInsteadOfIOException.java index 458eb54cd696..5cef30b96500 100644 --- a/plugins/InspectionGadgets/test/com/siyeh/igfixes/toobroadthrows/NotFoundInsteadOfIOException.java +++ b/plugins/InspectionGadgets/test/com/siyeh/igfixes/toobroadthrows/NotFoundInsteadOfIOException.java @@ -1,3 +1,4 @@ +import java.io.*; class Foo{ void foo() throws IOException { throw new FileNotFoundException();