formatting

This commit is contained in:
speed 2021-01-08 10:10:54 -05:00
parent 3464a33678
commit 9688827a39

View file

@ -252,7 +252,10 @@ public abstract class NanoHTTPD
{ {
safeClose(myServerSocket); safeClose(myServerSocket);
//This should prevent a null pointer :) //This should prevent a null pointer :)
if (myThread != null) myThread.join(); if (myThread != null)
{
myThread.join();
}
} }
catch (Exception e) catch (Exception e)
{ {