Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
b269ab0e
Commit
b269ab0e
authored
Sep 19, 2016
by
Phillip Webb
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make DefaultApplicationArguments public
Fixes gh-6521
parent
feee401f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
DefaultApplicationArguments.java
...org/springframework/boot/DefaultApplicationArguments.java
+4
-3
No files found.
spring-boot/src/main/java/org/springframework/boot/DefaultApplicationArguments.java
View file @
b269ab0e
...
@@ -26,17 +26,18 @@ import org.springframework.core.env.SimpleCommandLinePropertySource;
...
@@ -26,17 +26,18 @@ import org.springframework.core.env.SimpleCommandLinePropertySource;
import
org.springframework.util.Assert
;
import
org.springframework.util.Assert
;
/**
/**
* Default i
nternal i
mplementation of {@link ApplicationArguments}.
* Default implementation of {@link ApplicationArguments}.
*
*
* @author Phillip Webb
* @author Phillip Webb
* @since 1.4.1
*/
*/
class
DefaultApplicationArguments
implements
ApplicationArguments
{
public
class
DefaultApplicationArguments
implements
ApplicationArguments
{
private
final
Source
source
;
private
final
Source
source
;
private
final
String
[]
args
;
private
final
String
[]
args
;
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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment