From 9413c42765664a9712979335bbec7c940047a959 Mon Sep 17 00:00:00 2001 From: Jens Nolte <git@queezle.net> Date: Tue, 22 Feb 2022 02:20:04 +0100 Subject: [PATCH] Remove unnecessary bracket --- src/Quasar/Utils/Exceptions.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Quasar/Utils/Exceptions.hs b/src/Quasar/Utils/Exceptions.hs index 2bede2d..2674703 100644 --- a/src/Quasar/Utils/Exceptions.hs +++ b/src/Quasar/Utils/Exceptions.hs @@ -15,7 +15,7 @@ instance Exception CombinedException where displayException (CombinedException exceptions) = intercalate "\n" (header : exceptionMessages) where header = mconcat ["CombinedException with ", show (length exceptions), "exceptions:"] - exceptionMessages = (displayException <$> toList exceptions) + exceptionMessages = displayException <$> toList exceptions combinedExceptions :: CombinedException -> [SomeException] combinedExceptions (CombinedException exceptions) = toList exceptions -- GitLab