forked from StarOpenSource/Engine
Fix typo
dum
This commit is contained in:
parent
2f963e86ef
commit
7b70cf8511
1 changed files with 1 additions and 1 deletions
|
@ -152,7 +152,7 @@ public class EventHelper {
|
||||||
try {
|
try {
|
||||||
method.invoke(arguments);
|
method.invoke(arguments);
|
||||||
} catch (UnexpectedThrowableException exception) {
|
} 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) {
|
} catch (NoAccessException exception) {
|
||||||
logger.warn("Event listener method " + method.getName() + " could not be called as the method could not be accessed");
|
logger.warn("Event listener method " + method.getName() + " could not be called as the method could not be accessed");
|
||||||
} catch (InvalidMethodSignature exception) {
|
} catch (InvalidMethodSignature exception) {
|
||||||
|
|
Loading…
Reference in a new issue