Skip to content

Commit b269ab0

Browse files
committed
Make DefaultApplicationArguments public
Fixes gh-6521
1 parent feee401 commit b269ab0

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

spring-boot/src/main/java/org/springframework/boot/DefaultApplicationArguments.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,17 +26,18 @@
2626
import org.springframework.util.Assert;
2727

2828
/**
29-
* Default internal implementation of {@link ApplicationArguments}.
29+
* Default implementation of {@link ApplicationArguments}.
3030
*
3131
* @author Phillip Webb
32+
* @since 1.4.1
3233
*/
33-
class DefaultApplicationArguments implements ApplicationArguments {
34+
public class DefaultApplicationArguments implements ApplicationArguments {
3435

3536
private final Source source;
3637

3738
private final String[] args;
3839

39-
DefaultApplicationArguments(String[] args) {
40+
public DefaultApplicationArguments(String[] args) {
4041
Assert.notNull(args, "Args must not be null");
4142
this.source = new Source(args);
4243
this.args = args;

0 commit comments

Comments
 (0)