style: fix formatting

This commit is contained in:
Sculas 2024-03-20 19:01:59 +01:00
parent f48c48e6e5
commit 342404f586
No known key found for this signature in database
GPG Key ID: 1530BFF96D1EEB89
3 changed files with 470 additions and 468 deletions

View File

@ -123,7 +123,8 @@ public final class Limbo {
Thread t1 = new Thread(() -> { Thread t1 = new Thread(() -> {
try { try {
GUI.main(); GUI.main();
} catch (UnsupportedLookAndFeelException | ClassNotFoundException | InstantiationException | IllegalAccessException e) { } catch (UnsupportedLookAndFeelException | ClassNotFoundException | InstantiationException |
IllegalAccessException e) {
e.printStackTrace(); e.printStackTrace();
} }
}); });
@ -345,7 +346,8 @@ public final class Limbo {
loadPluginsMethod.setAccessible(true); loadPluginsMethod.setAccessible(true);
loadPluginsMethod.invoke(pluginManager); loadPluginsMethod.invoke(pluginManager);
loadPluginsMethod.setAccessible(false); loadPluginsMethod.setAccessible(false);
} catch (NoSuchMethodException | SecurityException | IllegalAccessException | IllegalArgumentException | InvocationTargetException e) { } catch (NoSuchMethodException | SecurityException | IllegalAccessException | IllegalArgumentException |
InvocationTargetException e) {
e.printStackTrace(); e.printStackTrace();
} }