We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b65b76 commit 05bff6eCopy full SHA for 05bff6e
core/src/main/java/dev/vml/es/acm/core/code/Arguments.java
@@ -75,6 +75,9 @@ public <T> T value(String name) {
75
}
76
77
public void setValues(ArgumentValues arguments) {
78
+ if (arguments == null) {
79
+ return; // input arguments may be skipped then default values will be used
80
+ }
81
arguments.forEach((name, value) -> {
82
Argument<?> argument = get(name);
83
setValue(argument, value);
0 commit comments