File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
spring-boot/src/main/java/org/springframework/boot Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 26
26
import org .springframework .util .Assert ;
27
27
28
28
/**
29
- * Default internal implementation of {@link ApplicationArguments}.
29
+ * Default implementation of {@link ApplicationArguments}.
30
30
*
31
31
* @author Phillip Webb
32
+ * @since 1.4.1
32
33
*/
33
- class DefaultApplicationArguments implements ApplicationArguments {
34
+ public class DefaultApplicationArguments implements ApplicationArguments {
34
35
35
36
private final Source source ;
36
37
37
38
private final String [] args ;
38
39
39
- DefaultApplicationArguments (String [] args ) {
40
+ public DefaultApplicationArguments (String [] args ) {
40
41
Assert .notNull (args , "Args must not be null" );
41
42
this .source = new Source (args );
42
43
this .args = args ;
You can’t perform that action at this time.
0 commit comments