Commit 1e3bae9b authored by Phillip Webb's avatar Phillip Webb

Third attempt to fix polish commit

parent 706aa7af
......@@ -86,7 +86,7 @@ public class ReflectiveOperationInvoker implements OperationInvoker {
private boolean isMissing(Map<String, Object> arguments,
OperationParameter parameter) {
if (!parameter.isMandatory()) {
return true;
return false;
}
return arguments.get(parameter.getName()) == null;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment