fix typo in Worker#close (#2092)

This commit is contained in:
Maxim Breitman 2024-04-11 22:33:15 +03:00 committed by GitHub
parent 54212ebc97
commit f1a4882572
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ public final class Worker extends MinestomThread {
try {
this.selector.close();
} catch (IOException e) {
LOGGER.error("Worker Socket Sector could not be closed", e);
LOGGER.error("Worker Socket Selector could not be closed", e);
System.exit(-1);
}
}