CVS: plexus-container-new/src/java/org/apache/plexus/classloader ResourceManagerFactory.java,1.1,1.2

[email protected] Fri, 2 May 2003 10:16:16 -0500
Newsgroups gmane.comp.java.plexus.devel
Message-ID <[email protected]>
Update of /cvsroot/plexus/plexus-container-new/src/java/org/apache/plexus/classloader
In directory eng.werken.com:/tmp/cvs-serv29586

Modified Files:
	ResourceManagerFactory.java 
Log Message:
o We want to name the logger 'resource-manager' and give the
  resource manager the configuration element of 'resources'
  not the other way around.

Index: ResourceManagerFactory.java
===================================================================
RCS file: /cvsroot/plexus/plexus-container-new/src/java/org/apache/plexus/classloader/ResourceManagerFactory.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- ResourceManagerFactory.java	28 Apr 2003 13:04:48 -0000	1.1
+++ ResourceManagerFactory.java	2 May 2003 15:16:14 -0000	1.2
@@ -31,8 +31,8 @@
             (DefaultResourceManager) getInstance( implementation, classLoader );
 
         rm.setClassLoader( classLoader );
-        rm.enableLogging( loggerManager.getLogger( "resources" ) );
-        rm.configure( configuration.getChild( "resource-manager" ) );
+        rm.enableLogging( loggerManager.getLogger( "resource-manager" ) );
+        rm.configure( configuration.getChild( "resources" ) );
 
         return rm;
     }