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

cvs commit: jakarta-commons/betwixt/src/java/org/apache/commons/betwixt XMLIntrospector.java

rdonkin     2004/04/18 02:48:06

  Modified:    betwixt/src/java/org/apache/commons/betwixt Tag:
                        REFACTORING-BRANCH_2004-01-13 XMLIntrospector.java
  Log:
  Added protected variable which had accidentally been removed
  
  Revision  Changes    Path
  No                   revision
  No                   revision
  1.27.2.11 +10 -4     jakarta-commons/betwixt/src/java/org/apache/commons/betwixt/XMLIntrospector.java
  
  Index: XMLIntrospector.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/betwixt/src/java/org/apache/commons/betwixt/XMLIntrospector.java,v
  retrieving revision 1.27.2.10
  retrieving revision 1.27.2.11
  diff -u -r1.27.2.10 -r1.27.2.11
  --- XMLIntrospector.java	21 Feb 2004 13:39:06 -0000	1.27.2.10
  +++ XMLIntrospector.java	18 Apr 2004 09:48:06 -0000	1.27.2.11
  @@ -92,6 +92,7 @@
   import org.apache.commons.betwixt.strategy.NameMapper;
   import org.apache.commons.betwixt.strategy.PluralStemmer;
   import org.apache.commons.logging.Log;
  +import org.apache.commons.logging.LogFactory;
   
   /** 
     * <p><code>XMLIntrospector</code> an introspector of beans to create a 
  @@ -114,6 +115,11 @@
     * @version $Id$
     */
   public class XMLIntrospector {
  +    /** 
  +     * Log used for logging (Doh!) 
  +     * @deprecated use the {@link #getLog()} property instead
  +     */    
  +    protected Log log = LogFactory.getLog( XMLIntrospector.class );
       
       /** Maps classes to <code>XMLBeanInfo</code>'s */
       private XMLBeanInfoRegistry registry = new DefaultXMLBeanInfoRegistry();
  
  
  

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