You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by mv...@apache.org on 2003/01/18 18:26:52 UTC

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

mvdb        2003/01/18 09:26:52

  Modified:    betwixt/src/java/org/apache/commons/betwixt/digester
                        HideRule.java
  Log:
  Fixing type in SAXException
  
  Revision  Changes    Path
  1.5       +8 -8      jakarta-commons/betwixt/src/java/org/apache/commons/betwixt/digester/HideRule.java
  
  Index: HideRule.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/betwixt/src/java/org/apache/commons/betwixt/digester/HideRule.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- HideRule.java	7 Jan 2003 22:32:57 -0000	1.4
  +++ HideRule.java	18 Jan 2003 17:26:52 -0000	1.5
  @@ -7,7 +7,7 @@
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999-2002 The Apache Software Foundation.  All rights
  + * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -69,7 +69,7 @@
   import org.xml.sax.SAXException;
   
   /** <p><code>HideRule</code> hides the property of the given name.</p>
  -  *
  +  * 
     * @author <a href="mailto:jstrachan@apache.org">James Strachan</a>
     * @version $Revision$
     */
  @@ -95,7 +95,7 @@
           String name = attributes.getValue( "property" );
           if ( name == null || name.length() == 0 ) {
               throw new SAXException( 
  -                "<ignore> element is missing the mandatory attribute 'property'" );
  +                "<hide> element is missing the mandatory attribute 'property'" );
           }
           Set propertySet = getProcessedPropertyNameSet();
           propertySet.add( name );
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>