You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@avalon.apache.org by do...@apache.org on 2001/04/11 05:06:18 UTC

cvs commit: jakarta-avalon/src/java/org/apache/avalon AbstractLoggable.java

donaldp     01/04/10 20:06:18

  Modified:    src/java/org/apache/avalon AbstractLoggable.java
  Log:
  Use Object instead of Component in setupLogger(). This is in preparation for decoupling and move to 4.0
  
  Revision  Changes    Path
  1.2       +3 -3      jakarta-avalon/src/java/org/apache/avalon/AbstractLoggable.java
  
  Index: AbstractLoggable.java
  ===================================================================
  RCS file: /home/cvs/jakarta-avalon/src/java/org/apache/avalon/AbstractLoggable.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- AbstractLoggable.java	2001/02/24 04:01:45	1.1
  +++ AbstractLoggable.java	2001/04/11 03:06:17	1.2
  @@ -29,12 +29,12 @@
           return m_logger;
       }
   
  -    protected void setupLogger( final Component component )
  +    protected void setupLogger( final Object component )
       {
           setupLogger( component, (String)null );
       }
   
  -    protected void setupLogger( final Component component, final String subCategory )
  +    protected void setupLogger( final Object component, final String subCategory )
       {
           if( component instanceof Loggable )
           {
  @@ -49,7 +49,7 @@
           }
       }
   
  -    protected void setupLogger( final Component component, final Logger logger )
  +    protected void setupLogger( final Object component, final Logger logger )
       {
           if( component instanceof Loggable )
           {
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: avalon-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: avalon-dev-help@jakarta.apache.org