From fa3f98581d0eab8e668a25ba72af04731cb66f94 Mon Sep 17 00:00:00 2001 From: nathan Date: Wed, 4 Apr 2018 23:34:29 +0200 Subject: [PATCH] It is not necessary to interrupt the thread group --- src/dorkbox/network/connection/Shutdownable.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/dorkbox/network/connection/Shutdownable.java b/src/dorkbox/network/connection/Shutdownable.java index d8e2ba61..b9f715cd 100644 --- a/src/dorkbox/network/connection/Shutdownable.java +++ b/src/dorkbox/network/connection/Shutdownable.java @@ -441,9 +441,6 @@ class Shutdownable { // when the eventloop closes, the associated selectors are ALSO closed! stopExtraActions(); - // we also want to stop the thread group - threadGroup.interrupt(); - isShutdown = true; }