Author: cyberdo
Date: 2006-04-01 20:37:31 +0000 (Sat, 01 Apr 2006)
New Revision: 8424

Modified:
   trunk/freenet/src/freenet/node/Version.java
   trunk/freenet/src/freenet/pluginmanager/PluginHandler.java
Log:
608: One line of code make the node work with threaded plugins... TestGallery 
should work now.


Modified: trunk/freenet/src/freenet/node/Version.java
===================================================================
--- trunk/freenet/src/freenet/node/Version.java 2006-04-01 15:37:05 UTC (rev 
8423)
+++ trunk/freenet/src/freenet/node/Version.java 2006-04-01 20:37:31 UTC (rev 
8424)
@@ -20,7 +20,7 @@
        public static final String protocolVersion = "1.0";

        /** The build number of the current revision */
-       private static final int buildNumber = 607;
+       private static final int buildNumber = 608;

        /** Oldest build of Fred we will talk to */
        private static final int lastGoodBuild = 591;

Modified: trunk/freenet/src/freenet/pluginmanager/PluginHandler.java
===================================================================
--- trunk/freenet/src/freenet/pluginmanager/PluginHandler.java  2006-04-01 
15:37:05 UTC (rev 8423)
+++ trunk/freenet/src/freenet/pluginmanager/PluginHandler.java  2006-04-01 
20:37:31 UTC (rev 8424)
@@ -26,7 +26,8 @@
                ps.setPlugin(pm, plug);
                if (!pi.isThreadlessPlugin())
                        ps.start();
-               ps.run();
+               else
+                       ps.run();
                return pi;
        }



Reply via email to