You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by di...@apache.org on 2002/06/07 13:56:29 UTC

cvs commit: jakarta-commons-sandbox/jelly/src/java/org/apache/commons/jelly TagLibrary.java

dion        2002/06/07 04:56:29

  Modified:    jelly/src/java/org/apache/commons/jelly TagLibrary.java
  Log:
  Fix jdk 1.4 compile error
  
  Revision  Changes    Path
  1.11      +6 -6      jakarta-commons-sandbox/jelly/src/java/org/apache/commons/jelly/TagLibrary.java
  
  Index: TagLibrary.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/jelly/src/java/org/apache/commons/jelly/TagLibrary.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- TagLibrary.java	6 Jun 2002 07:13:41 -0000	1.10
  +++ TagLibrary.java	7 Jun 2002 11:56:29 -0000	1.11
  @@ -1,7 +1,7 @@
   /*
  - * $Header: /home/cvs/jakarta-commons-sandbox/jelly/src/java/org/apache/commons/jelly/TagLibrary.java,v 1.10 2002/06/06 07:13:41 jstrachan Exp $
  - * $Revision: 1.10 $
  - * $Date: 2002/06/06 07:13:41 $
  + * $Header: /home/cvs/jakarta-commons-sandbox/jelly/src/java/org/apache/commons/jelly/TagLibrary.java,v 1.11 2002/06/07 11:56:29 dion Exp $
  + * $Revision: 1.11 $
  + * $Date: 2002/06/07 11:56:29 $
    *
    * ====================================================================
    *
  @@ -57,7 +57,7 @@
    * information on the Apache Software Foundation, please see
    * <http://www.apache.org/>.
    * 
  - * $Id: TagLibrary.java,v 1.10 2002/06/06 07:13:41 jstrachan Exp $
  + * $Id: TagLibrary.java,v 1.11 2002/06/07 11:56:29 dion Exp $
    */
   
   package org.apache.commons.jelly;
  @@ -76,7 +76,7 @@
   /** <p><code>Taglib</code> represents the metadata for a Jelly custom tag library.</p>
     *
     * @author <a href="mailto:jstrachan@apache.org">James Strachan</a>
  -  * @version $Revision: 1.10 $
  +  * @version $Revision: 1.11 $
     */
   
   public abstract class TagLibrary {
  @@ -117,7 +117,7 @@
           }
           
           // will use a constant expression instead
  -        return new ConstantExpression(attributeValue);;
  +        return new ConstantExpression(attributeValue);
       }
       
       
  
  
  

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