Avoid unnecessary string concatenation

This commit is contained in:
Jonas Tobias Hopusch 2022-03-12 14:36:08 +01:00
parent 653e5295de
commit 5154e8ebfc
Failed to generate hash of commit

View file

@ -68,13 +68,13 @@ public final class Main {
} else if (userData.length == 0) { } else if (userData.length == 0) {
switch (applicationOutputLanguage) { switch (applicationOutputLanguage) {
case GlobalConf.langGerman -> logger.log(Level.ERROR, "Es wurde keine Uhrzeit angegeben."); case GlobalConf.langGerman -> logger.log(Level.ERROR, "Es wurde keine Uhrzeit angegeben.");
default -> logger.log(Level.ERROR, "No target time" + " was " + "provided."); default -> logger.log(Level.ERROR, "No target time was provided.");
} }
System.exit(1); System.exit(1);
} else if (userData.length > 1) { } else if (userData.length > 1) {
switch (applicationOutputLanguage) { switch (applicationOutputLanguage) {
case GlobalConf.langGerman -> logger.log(Level.ERROR, "Zu viele Argumente wurden angegeben."); case GlobalConf.langGerman -> logger.log(Level.ERROR, "Zu viele Argumente wurden angegeben.");
default -> logger.log(Level.ERROR, "Too many arguments " + "provided."); default -> logger.log(Level.ERROR, "Too many arguments provided.");
} }
System.exit(1); System.exit(1);
} else { } else {
@ -82,7 +82,7 @@ public final class Main {
Sleep.waitUntilTimeStamp(target); Sleep.waitUntilTimeStamp(target);
} }
} catch (final ParseException e) { } catch (final ParseException e) {
System.getLogger("main").log(Level.ERROR, "Parsing " + "of arguments failed and the program cannot continue.", e); System.getLogger("main").log(Level.ERROR, "Parsing of arguments failed and the program cannot continue.", e);
System.exit(1); System.exit(1);
} }
} }