You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by ri...@apache.org on 2009/10/07 18:31:59 UTC

svn commit: r822795 - /felix/trunk/framework/src/main/java/org/apache/felix/framework/ModuleImpl.java

Author: rickhall
Date: Wed Oct  7 16:31:58 2009
New Revision: 822795

URL: http://svn.apache.org/viewvc?rev=822795&view=rev
Log:
Removed some extraneous and erroneous code from the boot delegation code.
I think it was added accidentally when refactoring it. (FELIX-1721)

Modified:
    felix/trunk/framework/src/main/java/org/apache/felix/framework/ModuleImpl.java

Modified: felix/trunk/framework/src/main/java/org/apache/felix/framework/ModuleImpl.java
URL: http://svn.apache.org/viewvc/felix/trunk/framework/src/main/java/org/apache/felix/framework/ModuleImpl.java?rev=822795&r1=822794&r2=822795&view=diff
==============================================================================
--- felix/trunk/framework/src/main/java/org/apache/felix/framework/ModuleImpl.java (original)
+++ felix/trunk/framework/src/main/java/org/apache/felix/framework/ModuleImpl.java Wed Oct  7 16:31:58 2009
@@ -635,12 +635,6 @@
                         result = (isClass)
                             ? (Object) parent.loadClass(name)
                             : (Object) parent.getResource(name);
-                         // If this is a java.* package, then always terminate the
-                         // search; otherwise, continue to look locally if not found.
-                         if (pkgName.startsWith("java.") || (result != null))
-                        result = (isClass)
-                            ? (Object) getClass().getClassLoader().loadClass(name)
-                            : (Object) getClass().getClassLoader().getResource(name);
                         // If this is a java.* package, then always terminate the
                         // search; otherwise, continue to look locally if not found.
                         if (pkgName.startsWith("java.") || (result != null))