From 6390eb2f3bc625ae6e57ebd3cfbc339b9ce78ac8 Mon Sep 17 00:00:00 2001 From: Reinhard Pointner Date: Wed, 19 Oct 2016 03:16:31 +0800 Subject: [PATCH] Refactor argument handling a bit --- source/net/filebot/cli/ArgumentProcessor.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/net/filebot/cli/ArgumentProcessor.java b/source/net/filebot/cli/ArgumentProcessor.java index 76fe6c16..ca999858 100644 --- a/source/net/filebot/cli/ArgumentProcessor.java +++ b/source/net/filebot/cli/ArgumentProcessor.java @@ -28,7 +28,7 @@ public class ArgumentProcessor { runScript(args); // script finished successfully - log.finest("Done ヾ(@⌒ー⌒@)ノ" + System.lineSeparator()); + log.finest("Done ヾ(@⌒ー⌒@)ノ"); return 0; } } catch (Throwable e) { @@ -42,7 +42,7 @@ public class ArgumentProcessor { } // script failed with exception -> exit with non-zero exit code (and use positive code to avoid issues with launch4j launcher) - log.finest("Failure (°_°)" + System.lineSeparator()); + log.finest("Failure (°_°)"); return 1; }