|
|
@ -37,7 +37,7 @@ public class DefaultApplicationArguments implements ApplicationArguments {
|
|
|
|
|
|
|
|
|
|
|
|
private final String[] args;
|
|
|
|
private final String[] args;
|
|
|
|
|
|
|
|
|
|
|
|
public DefaultApplicationArguments(String[] args) {
|
|
|
|
public DefaultApplicationArguments(String... args) {
|
|
|
|
Assert.notNull(args, "Args must not be null");
|
|
|
|
Assert.notNull(args, "Args must not be null");
|
|
|
|
this.source = new Source(args);
|
|
|
|
this.source = new Source(args);
|
|
|
|
this.args = args;
|
|
|
|
this.args = args;
|
|
|
|