donaldp     2002/11/09 18:59:17

  Modified:    fortress/src/java/org/apache/excalibur/fortress/handler
                        ComponentFactory.java
  Log:
  fix naming
  
  Revision  Changes    Path
  1.34      +8 -8      
jakarta-avalon-excalibur/fortress/src/java/org/apache/excalibur/fortress/handler/ComponentFactory.java
  
  Index: ComponentFactory.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-avalon-excalibur/fortress/src/java/org/apache/excalibur/fortress/handler/ComponentFactory.java,v
  retrieving revision 1.33
  retrieving revision 1.34
  diff -u -r1.33 -r1.34
  --- ComponentFactory.java     10 Nov 2002 00:53:21 -0000      1.33
  +++ ComponentFactory.java     10 Nov 2002 02:59:17 -0000      1.34
  @@ -109,7 +109,7 @@
   
       /** The LogKitManager for child ComponentSelectors
        */
  -    private LoggerManager m_logManager;
  +    private LoggerManager m_loggerManager;
   
       /** The logger for the ComponentFactory
        */
  @@ -130,13 +130,13 @@
        * @param configuration the <code>Configuration</code> object to pass to 
new instances.
        * @param serviceManager the service manager to pass to 
<code>Serviceable</code>s.
        * @param context the <code>Context</code> to pass to 
<code>Contexutalizable</code>s.
  -     * @param logkit the logkit manager instance.
  +     * @param loggerManager the loggerManager manager instance.
        */
       public ComponentFactory( final Class componentClass,
                                final Configuration configuration,
                                final ServiceManager serviceManager,
                                final Context context,
  -                             final LoggerManager logkit,
  +                             final LoggerManager loggerManager,
                                final LifecycleExtensionManager extManager,
                                final InstrumentManager instrumentManager )
       {
  @@ -144,9 +144,9 @@
           m_configuration = configuration;
           m_serviceManager = serviceManager;
           m_context = context;
  -        m_logManager = logkit;
  +        m_loggerManager = loggerManager;
           m_extManager = extManager;
  -        m_logger = m_logManager.getLoggerForCategory( "system.factory" );
  +        m_logger = m_loggerManager.getLoggerForCategory( "system.factory" );
           m_instrumentManager = instrumentManager;
           m_instrumentableName = configuration.getAttribute( "id", 
componentClass.getName() );
   
  @@ -173,12 +173,12 @@
               if( null == name )
               {
                   if( m_logger.isDebugEnabled() ) m_logger.debug( "no name 
attribute available, using standard name" );
  -                logger = m_logManager.getDefaultLogger();
  +                logger = m_loggerManager.getDefaultLogger();
               }
               else
               {
                   if( m_logger.isDebugEnabled() ) m_logger.debug( "name 
attribute is " + name );
  -                logger = m_logManager.getLoggerForCategory( name );
  +                logger = m_loggerManager.getLoggerForCategory( name );
               }
   
               if( component instanceof LogEnabled )
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to