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
1 changed files with 1 additions and 1 deletions

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) {