1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-12-21 15:28:52 -05:00

Use ↲ instead of ⏎ because it's from the older 1993 standard and generally looks better

This commit is contained in:
Reinhard Pointner 2019-06-11 19:14:14 +07:00
parent 090414ec38
commit e68d8213fe

View File

@ -98,7 +98,7 @@ public final class Logging {
}
public static Supplier<String> 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<String> trace(Throwable t) {