testdata fixed

This commit is contained in:
anna
2013-05-06 20:55:21 +02:00
parent 7a549b8d1b
commit be9e2fa9f7
119 changed files with 113 additions and 138 deletions
@@ -12,9 +12,9 @@ class CatchExceptions {
try {
foo();
} catch (FileNotFoundException e) {
<selection>e.printStackTrace(); //To change body of catch statement use File | Settings | File Templates.</selection>
<selection>e.printStackTrace();</selection>
} catch (IOException e) {
e.printStackTrace(); //To change body of catch statement use File | Settings | File Templates.
e.printStackTrace();
}
}
}