We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e566a77 commit 2e6d5d1Copy full SHA for 2e6d5d1
1 file changed
src/de/littlerolf/sav/loader/SorterLoader.java
@@ -100,9 +100,11 @@ public void instanstiateAllClasses() {
100
for (Class c : classes) {
101
try {
102
sorters.add((BaseSorter) c.newInstance());
103
- } catch (InstantiationException | IllegalAccessException e) {
+ } catch (InstantiationException e) {
104
e.printStackTrace();
105
- }
+ } catch (IllegalAccessException e) {
106
+ e.printStackTrace();
107
+ }
108
}
109
110
0 commit comments