vmassol     01/08/31 09:57:41

  Modified:    cactus/docs/framework/xdocs coding_conventions.xml
  Log:
  replaced this.logger.xxx() by logger.xxx() as logger is a static variable
  
  Revision  Changes    Path
  1.3       +6 -6      
jakarta-commons/cactus/docs/framework/xdocs/coding_conventions.xml
  
  Index: coding_conventions.xml
  ===================================================================
  RCS file: 
/home/cvs/jakarta-commons/cactus/docs/framework/xdocs/coding_conventions.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- coding_conventions.xml    2001/08/19 17:03:05     1.2
  +++ coding_conventions.xml    2001/08/31 16:57:41     1.3
  @@ -228,7 +228,7 @@
           </p>
   
   <source><![CDATA[
  -@version $Id: coding_conventions.xml,v 1.2 2001/08/19 17:03:05 vmassol Exp $
  +@version $Id: coding_conventions.xml,v 1.3 2001/08/31 16:57:41 vmassol Exp $
   ]]></source>
   
         </s2>
  @@ -248,7 +248,7 @@
   
   public void someMethod()
   {
  -    this.logger.debug("some debug text");
  +    logger.debug("some debug text");
   }
   ]]></source>
   
  @@ -262,9 +262,9 @@
   <source><![CDATA[
   public void someMethod(String theClassName)
   {
  -    this.logger.entry("someMethod([" + theClassName + "])");
  +    logger.entry("someMethod([" + theClassName + "])");
   [...]
  -    this.logger.exit("someMethod");
  +    logger.exit("someMethod");
   }
   ]]></source>
   
  @@ -286,9 +286,9 @@
   <source><![CDATA[
   public void someMethod(InputStream theInputStream)
   {
  -    this.logger.entry("someMethod(...)");
  +    logger.entry("someMethod(...)");
   [...]
  -    this.logger.exit("someMethod");
  +    logger.exit("someMethod");
   }
   ]]></source>
   
  
  
  

Reply via email to