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:
wcrisman
2014-07-30 23:21:05 -07:00
parent cd0976ea2e
commit 12d99f8b4d
2 changed files with 14 additions and 10 deletions

View File

@@ -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//