Skip to content

Commit

Permalink
fix: fixed the build prior to java 19
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisdutz committed Feb 6, 2024
1 parent 51434bd commit 464f510
Showing 1 changed file with 3 additions and 2 deletions.
Expand Up @@ -130,10 +130,11 @@ public void setDriverContext(DriverContext driverContext) {

@Override
public void close(ConversationContext<TPKTPacket> context) {
// TODO Implement Closing on Protocol Level
clientExecutorService.close();
// TODO: Find out how to close this prior to Java 19
//clientExecutorService.close();
tm.shutdown();
eventLogic.stop();
// TODO Implement Closing on Protocol Level
}

@Override
Expand Down

0 comments on commit 464f510

Please sign in to comment.