larryi      01/10/24 18:41:49

  Modified:    src/share/org/apache/tomcat/util/xml XmlMapper.java
  Log:
  Fix property substitution not substituting.  Bugzilla #4313
  
  Reported by: Jeff Turner
  
  Revision  Changes    Path
  1.38      +1 -1      
jakarta-tomcat/src/share/org/apache/tomcat/util/xml/XmlMapper.java
  
  Index: XmlMapper.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat/src/share/org/apache/tomcat/util/xml/XmlMapper.java,v
  retrieving revision 1.37
  retrieving revision 1.38
  diff -u -r1.37 -r1.38
  --- XmlMapper.java    2001/09/29 04:28:22     1.37
  +++ XmlMapper.java    2001/10/25 01:41:48     1.38
  @@ -805,7 +805,7 @@
            if( !value1.equals(value) && ctx.getDebug() > -1 )
                ctx.log( "Replace " + value + " " + value1 );
                
  -         IntrospectionUtils.setProperty( elem, name, value );
  +         IntrospectionUtils.setProperty( elem, name, value1 );
        }
       }
   }
  
  
  


Reply via email to