| Author | DaveJarvis <email> |
|---|---|
| Date | 2020-09-19 10:14:18 GMT-0700 |
| Commit | 4eb723d4bba1f86090283b4905da6ef22ca32402 |
| Parent | 6b449b8 |
| Delta | 3 lines added, 10 lines removed, 7-line decrease |
| Main.status.error.def.missing=No definition value found for ''{0}''. | ||
| Main.status.error.r=Error with [{0}...]: {1} | ||
| +Main.status.error.file.missing=Not found: {0} | ||
| # ######################################################################## |
| @SuppressWarnings("RedundantStringFormatCall") | ||
| private static void showAppInfo() throws IOException { | ||
| - out( format( "%s version %s", getTitle(), getVersion() ) ); | ||
| + out( format( "%s version %s", APP_TITLE, getVersion() ) ); | ||
| out( format( "Copyright %s White Magic Software, Ltd.", getYear() ) ); | ||
| out( format( "Portions copyright 2020 Karl Tauber." ) ); | ||
| } | ||
| private static void out( final String s ) { | ||
| System.out.println( s ); | ||
| - } | ||
| - | ||
| - private static String getTitle() { | ||
| - return APP_TITLE; | ||
| } | ||
| createImage( FILE_LOGO_256 ), | ||
| createImage( FILE_LOGO_512 ) ); | ||
| - stage.setTitle( getApplicationTitle() ); | ||
| + stage.setTitle( APP_TITLE ); | ||
| stage.setScene( getScene() ); | ||
| private Scene getScene() { | ||
| return getMainWindow().getScene(); | ||
| - } | ||
| - | ||
| - private String getApplicationTitle() { | ||
| - return APP_TITLE; | ||
| } | ||