From e68d8213fec548bba71321eef18c27dc6513df3f Mon Sep 17 00:00:00 2001 From: Reinhard Pointner Date: Tue, 11 Jun 2019 19:14:14 +0700 Subject: [PATCH] =?UTF-8?q?Use=20=E2=86=B2=20instead=20of=20=E2=8F=8E=20be?= =?UTF-8?q?cause=20it's=20from=20the=20older=201993=20standard=20and=20gen?= =?UTF-8?q?erally=20looks=20better?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/net/filebot/Logging.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/net/filebot/Logging.java b/source/net/filebot/Logging.java index c28238d8..4e70c1b8 100644 --- a/source/net/filebot/Logging.java +++ b/source/net/filebot/Logging.java @@ -98,7 +98,7 @@ public final class Logging { } public static Supplier formatSingleLine(String format, Object... args) { - return () -> NEWLINE.splitAsStream(String.format(format, args)).map(String::trim).filter(s -> !s.isEmpty()).collect(joining(" ⏎ ")); + return () -> NEWLINE.splitAsStream(String.format(format, args)).map(String::trim).filter(s -> !s.isEmpty()).collect(joining(" ↲ ")); } public static Supplier trace(Throwable t) {