From ae21085ea5e6e3ae18c7f0ce44472f77e615140c Mon Sep 17 00:00:00 2001 From: Reinhard Pointner Date: Fri, 21 Oct 2016 16:57:47 +0800 Subject: [PATCH] Change SuppressedThrowables String representation separator --- source/net/filebot/format/SuppressedThrowables.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/net/filebot/format/SuppressedThrowables.java b/source/net/filebot/format/SuppressedThrowables.java index 96ea9248..99be1cfc 100644 --- a/source/net/filebot/format/SuppressedThrowables.java +++ b/source/net/filebot/format/SuppressedThrowables.java @@ -36,7 +36,7 @@ public class SuppressedThrowables extends RuntimeException { } 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(" | ")); } }