Fixing confusing output

This commit is contained in:
Joakim Erdfelt 2012-12-20 17:32:34 -07:00
parent a371a8963d
commit 5e4711fdb0
1 changed files with 6 additions and 6 deletions

View File

@ -269,14 +269,14 @@ public class ShutdownMonitor extends Thread
private void startListenSocket()
{
if (this.port < 0)
{
System.out.println("ShutdownMonitor not in use (port < 0): " + port);
return;
}
try
{
if (this.port < 0)
{
System.out.println("ShutdownMonitor not in use (port < 0): " + port);
return;
}
setDaemon(true);
setName("ShutdownMonitor");