To Shutdown You Must First Shutdown
by in CodeSOD on 2026-03-10Every once in awhile, we get a bit of terrible code, and our submitter also shares, "this isn't called anywhere," which is good, but also bad. Ernesto sends us a function which is called in only one place:
///
/// Shutdown server
///
private void shutdownServer()
{
shutdownServer();
}