1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-12-24 08:48:51 -05:00

Change SuppressedThrowables String representation separator

This commit is contained in:
Reinhard Pointner 2016-10-21 16:57:47 +08:00
parent 186808b695
commit ae21085ea5

View File

@ -36,7 +36,7 @@ public class SuppressedThrowables extends RuntimeException {
} }
private static String getMessage(Throwable... causes) { private static String getMessage(Throwable... causes) {
return stream(causes).map(Throwable::getMessage).map(Objects::toString).distinct().collect(joining("; ")); return stream(causes).map(Throwable::getMessage).map(Objects::toString).distinct().collect(joining(" | "));
} }
} }