You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hivemind.apache.org by kn...@apache.org on 2006/07/28 09:56:25 UTC

svn commit: r426422 - /hivemind/trunk/framework/src/java/org/apache/hivemind/service/impl/HiveMindClassPool.java

Author: knut
Date: Fri Jul 28 00:56:25 2006
New Revision: 426422

URL: http://svn.apache.org/viewvc?rev=426422&view=rev
Log:
Explicitly include the classloader used to load the HiveMind classes in the classloader hierarchy used by ClassFactory (through HiveMindClassPool)

Modified:
    hivemind/trunk/framework/src/java/org/apache/hivemind/service/impl/HiveMindClassPool.java

Modified: hivemind/trunk/framework/src/java/org/apache/hivemind/service/impl/HiveMindClassPool.java
URL: http://svn.apache.org/viewvc/hivemind/trunk/framework/src/java/org/apache/hivemind/service/impl/HiveMindClassPool.java?rev=426422&r1=426421&r2=426422&view=diff
==============================================================================
--- hivemind/trunk/framework/src/java/org/apache/hivemind/service/impl/HiveMindClassPool.java (original)
+++ hivemind/trunk/framework/src/java/org/apache/hivemind/service/impl/HiveMindClassPool.java Fri Jul 28 00:56:25 2006
@@ -32,7 +32,8 @@
  */
 public class HiveMindClassPool extends ClassPool
 {
-    private ClassFactoryClassLoader _loader = new ClassFactoryClassLoader();
+    private ClassFactoryClassLoader _loader = new ClassFactoryClassLoader(HiveMindClassPool.class
+            .getClassLoader());
 
     /**
      * Used to identify which class loaders have already been integrated into the pool.