SteamWar/BauSystem2.0
Archiviert
12
0

Make LinkageUtils better with Error handling

Dieser Commit ist enthalten in:
yoyosource 2021-04-17 23:17:11 +02:00
Ursprung 053a9129e7
Commit abb52aeaf7

Datei anzeigen

@ -52,6 +52,8 @@ public class LinkageUtils {
linkOrUnlink(Class.forName(s), unlink); linkOrUnlink(Class.forName(s), unlink);
} catch (ClassNotFoundException e) { } catch (ClassNotFoundException e) {
// ignored // ignored
} catch (Exception e) {
e.printStackTrace();
} }
}); });
} catch (IOException e) { } catch (IOException e) {