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
bce57372
Commit
bce57372
authored
Mar 09, 2017
by
Sabri Onur Tüzün
Committed by
Stephane Nicoll
Mar 10, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unused parameter
Closes gh-8552
parent
abef1ee4
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 @
bce57372
...
...
@@ -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