You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by di...@apache.org on 2003/03/24 14:55:28 UTC

cvs commit: maven/src/java/org/apache/maven MavenUtils.java

dion        2003/03/24 05:55:28

  Modified:    src/java/org/apache/maven MavenUtils.java
  Log:
  Remove deprecated digester and betwixt methods
  
  Revision  Changes    Path
  1.91      +4 -5      maven/src/java/org/apache/maven/MavenUtils.java
  
  Index: MavenUtils.java
  ===================================================================
  RCS file: /home/cvs/maven/src/java/org/apache/maven/MavenUtils.java,v
  retrieving revision 1.90
  retrieving revision 1.91
  diff -u -r1.90 -r1.91
  --- MavenUtils.java	8 Mar 2003 02:31:36 -0000	1.90
  +++ MavenUtils.java	24 Mar 2003 13:55:28 -0000	1.91
  @@ -591,7 +591,6 @@
           XMLIntrospector introspector = new XMLIntrospector();
   
           introspector.setAttributesForPrimitives( false );
  -        introspector.setCachingEnabled( true );
           introspector.setElementNameMapper( new DecapitalizeNameMapper() );
   
           return introspector;
  @@ -950,10 +949,10 @@
            * @param value body
            * @throws Exception when any errors occur
            */
  -        public void body( String value )
  +        public void body(String namespace, String name, String text)
               throws Exception
           {
  -            this.value = value;
  +            this.value = text;
           }
   
           /**
  @@ -961,7 +960,7 @@
            *
            * @throws Exception when any errors occur
            */
  -        public void end()
  +        public void end(String namespace, String elementName)
               throws Exception
           {
               BaseObject baseObject = (BaseObject) getDigester().peek();
  
  
  

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