From 7b70cf8511e2034343136101f3458dfbc294454e Mon Sep 17 00:00:00 2001 From: JeremyStarTM Date: Tue, 23 Jul 2024 17:46:30 +0200 Subject: [PATCH] Fix typo dum --- .../sosengine/base/classes/helpers/EventHelper.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/src/main/java/de/staropensource/sosengine/base/classes/helpers/EventHelper.java b/base/src/main/java/de/staropensource/sosengine/base/classes/helpers/EventHelper.java index 520e29b..55951ad 100644 --- a/base/src/main/java/de/staropensource/sosengine/base/classes/helpers/EventHelper.java +++ b/base/src/main/java/de/staropensource/sosengine/base/classes/helpers/EventHelper.java @@ -152,7 +152,7 @@ public class EventHelper { try { method.invoke(arguments); } catch (UnexpectedThrowableException exception) { - logger.crash("Event listener method " + method.getName() + " could not be called as an error occured during reflection", exception, true); + logger.crash("Event listener method " + method.getName() + " could not be called as an error occurred during reflection", exception, true); } catch (NoAccessException exception) { logger.warn("Event listener method " + method.getName() + " could not be called as the method could not be accessed"); } catch (InvalidMethodSignature exception) {