3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-12-18 20:40:08 +01:00

Fixed empty console! Oops!

Dieser Commit ist enthalten in:
Dinnerbone 2011-02-26 11:51:31 +00:00
Ursprung 07b86b1230
Commit d7114a4f62

Datei anzeigen

@ -25,13 +25,13 @@ public class ShortConsoleLogFormatter extends Formatter {
}
} catch (OptionException ex) {
System.err.println("Given date format is not valid. Falling back to default.");
} finally {
if (date == null) {
date = new SimpleDateFormat("HH:mm:ss");
}
}
}
if (date == null) {
date = new SimpleDateFormat("HH:mm:ss");
}
this.date = date;
}