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
7ed97d3e
Commit
7ed97d3e
authored
Mar 10, 2017
by
Stephane Nicoll
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #8552 from sotuzun:master
* pr/8552: Remove unused parameter
parents
abef1ee4
bce57372
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
SpringApplicationBannerPrinter.java
.../springframework/boot/SpringApplicationBannerPrinter.java
+3
-3
No files found.
spring-boot/src/main/java/org/springframework/boot/SpringApplicationBannerPrinter.java
View file @
7ed97d3e
...
...
@@ -56,7 +56,7 @@ class SpringApplicationBannerPrinter {
}
public
Banner
print
(
Environment
environment
,
Class
<?>
sourceClass
,
Log
logger
)
{
Banner
banner
=
getBanner
(
environment
,
this
.
fallbackBanner
);
Banner
banner
=
getBanner
(
environment
);
try
{
logger
.
info
(
createStringFromBanner
(
banner
,
environment
,
sourceClass
));
}
...
...
@@ -67,12 +67,12 @@ class SpringApplicationBannerPrinter {
}
public
Banner
print
(
Environment
environment
,
Class
<?>
sourceClass
,
PrintStream
out
)
{
Banner
banner
=
getBanner
(
environment
,
this
.
fallbackBanner
);
Banner
banner
=
getBanner
(
environment
);
banner
.
printBanner
(
environment
,
sourceClass
,
out
);
return
new
PrintedBanner
(
banner
,
sourceClass
);
}
private
Banner
getBanner
(
Environment
environment
,
Banner
definedBanner
)
{
private
Banner
getBanner
(
Environment
environment
)
{
Banners
banners
=
new
Banners
();
banners
.
addIfNotNull
(
getImageBanner
(
environment
));
banners
.
addIfNotNull
(
getTextBanner
(
environment
));
...
...
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