Rename Spring Bootstrap -> Spring Boot

This commit is contained in:
Phillip Webb 2013-07-30 16:21:20 -07:00
parent 3bb79db579
commit ec36efd50f
1 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@ import static org.springframework.boot.ansi.AnsiElement.GREEN;
/**
* Writes the 'Spring' banner.
*
*
* @author Phillip Webb
*/
abstract class Banner {
@ -49,7 +49,7 @@ abstract class Banner {
printStream.println(line);
}
String version = Banner.class.getPackage().getImplementationVersion();
printStream.println(AnsiOutput.toString(GREEN, " Spring Bootstrap", DEFAULT,
printStream.println(AnsiOutput.toString(GREEN, " Spring Boot", DEFAULT,
FAINT, (version == null ? "" : " (v" + version + ")")));
printStream.println();
}