SteamWar/SpigotCore
Archiviert
13
0

Fix SubCommand.invoke

Dieser Commit ist enthalten in:
yoyosource 2021-03-25 12:25:48 +01:00
Ursprung ea4d6f2a0a
Commit 23ec2f62f7

Datei anzeigen

@ -78,7 +78,7 @@ class SubCommand {
method.invoke(swCommand, objects);
} catch (IllegalArgumentException | IllegalAccessException e) {
throw new SecurityException(e.getMessage(), e);
} catch (InvocationTargetException e) {
} catch (InvocationTargetException | SecurityException e) {
return false;
}
return true;