Update cloud-annotations/src/main/java/cloud/commandframework/annotations/MethodCommandExecutionHandler.java

Co-authored-by: Alexander Söderberg <Sauilitired@users.noreply.github.com>
This commit is contained in:
Josh Taylor 2020-12-07 12:04:52 +00:00 committed by Alexander Söderberg
parent 237eda75ef
commit 014715c9e7

View file

@ -106,7 +106,8 @@ class MethodCommandExecutionHandler<C> implements CommandExecutionHandler<C> {
} else { } else {
throw new IllegalArgumentException(String.format( throw new IllegalArgumentException(String.format(
"Unknown command parameter '%s' in method '%s'", "Unknown command parameter '%s' in method '%s'",
parameter.getName(), this.methodHandle.toString() parameter.getName(),
this.methodHandle.toString()
)); ));
} }
} }