You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by jo...@apache.org on 2002/06/01 22:32:02 UTC

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

jon         2002/06/01 13:32:02

  Modified:    betwixt/src/java/org/apache/commons/betwixt/digester
                        HideRule.java
  Log:
  fixed error message
  
  -jon
  
  Revision  Changes    Path
  1.4       +6 -6      jakarta-commons-sandbox/betwixt/src/java/org/apache/commons/betwixt/digester/HideRule.java
  
  Index: HideRule.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/betwixt/src/java/org/apache/commons/betwixt/digester/HideRule.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- HideRule.java	28 May 2002 23:01:07 -0000	1.3
  +++ HideRule.java	1 Jun 2002 20:32:02 -0000	1.4
  @@ -1,7 +1,7 @@
   /*
  - * $Header: /home/cvs/jakarta-commons-sandbox/betwixt/src/java/org/apache/commons/betwixt/digester/HideRule.java,v 1.3 2002/05/28 23:01:07 jstrachan Exp $
  - * $Revision: 1.3 $
  - * $Date: 2002/05/28 23:01:07 $
  + * $Header: /home/cvs/jakarta-commons-sandbox/betwixt/src/java/org/apache/commons/betwixt/digester/HideRule.java,v 1.4 2002/06/01 20:32:02 jon Exp $
  + * $Revision: 1.4 $
  + * $Date: 2002/06/01 20:32:02 $
    *
    * ====================================================================
    *
  @@ -57,7 +57,7 @@
    * information on the Apache Software Foundation, please see
    * <http://www.apache.org/>.
    * 
  - * $Id: HideRule.java,v 1.3 2002/05/28 23:01:07 jstrachan Exp $
  + * $Id: HideRule.java,v 1.4 2002/06/01 20:32:02 jon Exp $
    */
   package org.apache.commons.betwixt.digester;
   
  @@ -74,7 +74,7 @@
   /** <p><code>HideRule</code> hides the property of the given name.</p>
     *
     * @author <a href="mailto:jstrachan@apache.org">James Strachan</a>
  -  * @version $Revision: 1.3 $
  +  * @version $Revision: 1.4 $
     */
   public class HideRule extends RuleSupport {
   
  @@ -96,7 +96,7 @@
       public void begin(Attributes attributes) throws Exception {
           String name = attributes.getValue( "property" );
           if ( name == null || name.length() == 0 ) {
  -            throw new SAXException( "<ignore> element is missing the mandatory attribute 'name'" );
  +            throw new SAXException( "<ignore> 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>