diff --git a/plugins/groovy/testdata/refactoring/changeSignature/AddException_after.java b/plugins/groovy/testdata/refactoring/changeSignature/AddException_after.java index e3a0b27716f4..37316f1632c3 100644 --- a/plugins/groovy/testdata/refactoring/changeSignature/AddException_after.java +++ b/plugins/groovy/testdata/refactoring/changeSignature/AddException_after.java @@ -1,7 +1,9 @@ class Foo { public static void main(String[] args) { - try {new AddException().foo();} catch (java.io.IOException e) { - e.printStackTrace(); //To change body of catch statement use File | Settings | File Templates. -} + try { + new AddException().foo(); + } catch (java.io.IOException e) { + e.printStackTrace(); //To change body of catch statement use File | Settings | File Templates. + } } } \ No newline at end of file