--- build.xml.old 2004-11-22 15:00:33.000000000 +0100 +++ build.xml 2004-11-23 09:46:06.000000000 +0100 @@ -13,7 +13,6 @@ - @@ -21,7 +20,37 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -40,7 +69,6 @@ - @@ -59,24 +87,14 @@ - - - - - - - - - - @@ -88,27 +106,8 @@ - - - - - - - - - - - - - - - - - - - @@ -116,12 +115,9 @@ - - - @@ -131,19 +127,6 @@ - - - - - - - - - - - - - --- etc/MANIFEST.MF.old 2004-11-22 14:59:45.000000000 +0100 +++ etc/MANIFEST.MF 2004-11-22 16:23:46.000000000 +0100 @@ -1,6 +1,6 @@ Manifest-Version: 1.0 -Main-Class: org.methodize.nntprss.Startup +Main-Class: org.methodize.nntprss.Main Created-By: Jason Brome -Name: org.methodize.nntprss.Startup.class +Name: org.methodize.nntprss.Main.class --- src/org/methodize/nntprss/Main.java.old 2004-11-22 15:38:57.000000000 +0100 +++ src/org/methodize/nntprss/Main.java 2004-11-22 15:39:44.000000000 +0100 @@ -59,7 +59,6 @@ private ChannelManager channelManager = null; private PublishManager publishManager = null; private AdminServer adminServer = null; - private WindowsSysTray windowsSysTray = null; private class ShutdownHook extends Thread { @@ -72,10 +71,6 @@ log.info("Shutting down nntp//rss..."); } - if (windowsSysTray != null) { - windowsSysTray.shutdown(); - } - adminServer.shutdown(); nntpServer.shutdown(); @@ -117,13 +112,6 @@ log.warn("JSSE not found - HTTPS support not available"); } - if (System - .getProperty("os.name") - .toLowerCase() - .startsWith("windows")) { - windowsSysTray = new WindowsSysTray(); - } - // Load configuration Document config = loadConfiguration(); @@ -151,13 +139,6 @@ nntpServer.start(); channelManager.start(); - if (windowsSysTray != null) { - windowsSysTray.setAdminURL( - "http://127.0.0.1:" + adminServer.getPort() + "/"); - windowsSysTray.setChannelManager(channelManager); - windowsSysTray.showStarted(); - } - } catch (Exception e) { log.error("Exception thrown during startup", e); e.printStackTrace();