Fix SubCommand.invoke
Dieser Commit ist enthalten in:
Ursprung
ea4d6f2a0a
Commit
23ec2f62f7
@ -78,7 +78,7 @@ class SubCommand {
|
|||||||
method.invoke(swCommand, objects);
|
method.invoke(swCommand, objects);
|
||||||
} catch (IllegalArgumentException | IllegalAccessException e) {
|
} catch (IllegalArgumentException | IllegalAccessException e) {
|
||||||
throw new SecurityException(e.getMessage(), e);
|
throw new SecurityException(e.getMessage(), e);
|
||||||
} catch (InvocationTargetException e) {
|
} catch (InvocationTargetException | SecurityException e) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
|
In neuem Issue referenzieren
Einen Benutzer sperren