vmassol     01/08/19 10:03:05

  Modified:    cactus/docs/framework/xdocs coding_conventions.xml
  Log:
  align with coding conventions!
  
  Revision  Changes    Path
  1.2       +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.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- coding_conventions.xml    2001/08/19 12:14:49     1.1
  +++ coding_conventions.xml    2001/08/19 17:03:05     1.2
  @@ -228,7 +228,7 @@
           </p>
   
   <source><![CDATA[
  -@version $Id: coding_conventions.xml,v 1.1 2001/08/19 12:14:49 vmassol Exp $
  +@version $Id: coding_conventions.xml,v 1.2 2001/08/19 17:03:05 vmassol Exp $
   ]]></source>
   
         </s2>
  @@ -248,7 +248,7 @@
   
   public void someMethod()
   {
  -    logger.debug("some debug text");
  +    this.logger.debug("some debug text");
   }
   ]]></source>
   
  @@ -262,9 +262,9 @@
   <source><![CDATA[
   public void someMethod(String theClassName)
   {
  -    logger.entry("someMethod([" + theClassName + "])");
  +    this.logger.entry("someMethod([" + theClassName + "])");
   [...]
  -    logger.exit("someMethod");
  +    this.logger.exit("someMethod");
   }
   ]]></source>
   
  @@ -286,9 +286,9 @@
   <source><![CDATA[
   public void someMethod(InputStream theInputStream)
   {
  -    logger.entry("someMethod(...)");
  +    this.logger.entry("someMethod(...)");
   [...]
  -    logger.exit("someMethod");
  +    this.logger.exit("someMethod");
   }
   ]]></source>
   
  
  
  

Reply via email to