You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by cr...@apache.org on 2003/08/17 01:46:31 UTC

cvs commit: jakarta-commons/logging/src/java/org/apache/commons/logging package.html

craigmcc    2003/08/16 16:46:31

  Modified:    logging/src/java/org/apache/commons/logging package.html
  Log:
  Correct a usage example in the Package Description javadocs.
  
  PR:  Bugzilla #18889
  Submitted By:  Thai Ha (thaiha at psv.com.vn)
  
  Revision  Changes    Path
  1.11      +1 -1      jakarta-commons/logging/src/java/org/apache/commons/logging/package.html
  
  Index: package.html
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/logging/src/java/org/apache/commons/logging/package.html,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- package.html	1 May 2003 16:55:29 -0000	1.10
  +++ package.html	16 Aug 2003 23:46:31 -0000	1.11
  @@ -38,7 +38,7 @@
   
       public class Foo {
   
  -        static Log log = LogFactory.getLog(this.class);
  +        static Log log = LogFactory.getLog(Foo.class);
   
           public void foo() {
               ...