[Jboss-cvs] JBossAS SVN: r56391 - branches/MC_VDF_WORK/j2se/src/main/org/jboss/mx/loading

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Aug 29 02:56:39 EDT 2006


Author: scott.stark at jboss.org
Date: 2006-08-29 02:56:37 -0400 (Tue, 29 Aug 2006)
New Revision: 56391

Modified:
   branches/MC_VDF_WORK/j2se/src/main/org/jboss/mx/loading/LegacyDomainClassLoader.java
Log:
More work on porting the legacy UCL to the DomainClassLoader

Modified: branches/MC_VDF_WORK/j2se/src/main/org/jboss/mx/loading/LegacyDomainClassLoader.java
===================================================================
--- branches/MC_VDF_WORK/j2se/src/main/org/jboss/mx/loading/LegacyDomainClassLoader.java	2006-08-29 06:40:58 UTC (rev 56390)
+++ branches/MC_VDF_WORK/j2se/src/main/org/jboss/mx/loading/LegacyDomainClassLoader.java	2006-08-29 06:56:37 UTC (rev 56391)
@@ -43,8 +43,8 @@
 
 import org.jboss.classloading.spi.ClassLoadingDomain;
 import org.jboss.classloading.spi.DomainClassLoader;
+import org.jboss.classloading.spi.Translator;
 import org.jboss.logging.Logger;
-import org.jboss.util.loading.Translator;
 import org.jboss.util.collection.SoftSet;
 
 import EDU.oswego.cs.dl.util.concurrent.ReentrantLock;
@@ -451,7 +451,7 @@
    public URL getResource(String name)
    {
       if (domain != null)
-         return domain.loadResource(name, this);
+         return domain.getResource(name, this);
       return null;
    }
 




More information about the jboss-cvs-commits mailing list