Skip to content

Commit 2e6d5d1

Browse files
author
Belogron
committed
Fix for jdk6
1 parent e566a77 commit 2e6d5d1

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/de/littlerolf/sav/loader/SorterLoader.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,9 +100,11 @@ public void instanstiateAllClasses() {
100100
for (Class c : classes) {
101101
try {
102102
sorters.add((BaseSorter) c.newInstance());
103-
} catch (InstantiationException | IllegalAccessException e) {
103+
} catch (InstantiationException e) {
104104
e.printStackTrace();
105-
}
105+
} catch (IllegalAccessException e) {
106+
e.printStackTrace();
107+
}
106108
}
107109
}
108110

0 commit comments

Comments
 (0)