Removed unneeded hard exit

// FREEBIE
This commit is contained in:
Moxie Marlinspike 2016-11-29 19:36:55 -08:00
parent 26bd15ec28
commit 1515793109
1 changed files with 2 additions and 2 deletions

View File

@ -88,8 +88,8 @@ public class DirectoryCommand extends EnvironmentCommand<WhisperServerConfigurat
logger.warn("Directory Exception", ex);
throw new RuntimeException(ex);
} finally {
Thread.sleep(3000);
System.exit(0);
// Thread.sleep(3000);
// System.exit(0);
}
}
}