Removed dead code.
Change to WebServer's listener code to ensure that there is always a thread listening (we somehow ended up with no thread listening in some cases).
This commit is contained in:
@@ -164,11 +164,11 @@ public class ThreadService {
|
||||
singleThreadedContext = null;
|
||||
target.run();
|
||||
}//if//
|
||||
else {
|
||||
Debug.log("A target must be provided in order to run a reusable thread.");
|
||||
}//else//
|
||||
// else {
|
||||
// Debug.log("A target must be provided in order to run a reusable thread.");
|
||||
// }//else//
|
||||
}//try//
|
||||
catch(Exception e) {
|
||||
catch(Throwable e) {
|
||||
if(e instanceof InterruptedException) {
|
||||
return;
|
||||
}//if//
|
||||
|
||||
Reference in New Issue
Block a user