You are viewing a plain text version of this content. The canonical link for it is here.
Posted to taglibs-dev@jakarta.apache.org by lu...@apache.org on 2002/04/06 23:14:29 UTC

cvs commit: jakarta-taglibs/standard/src/org/apache/taglibs/standard/tag/rt/fmt FormatDateTag.java

luehe       02/04/06 13:14:29

  Modified:    standard/src/org/apache/taglibs/standard/tag/rt/fmt
                        FormatDateTag.java
  Log:
  Fixed 7799: <fmt-rt:formatDate> fails to accept an RT value of type java.util.Date
  
  Revision  Changes    Path
  1.8       +1 -1      jakarta-taglibs/standard/src/org/apache/taglibs/standard/tag/rt/fmt/FormatDateTag.java
  
  Index: FormatDateTag.java
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/standard/src/org/apache/taglibs/standard/tag/rt/fmt/FormatDateTag.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- FormatDateTag.java	9 Mar 2002 00:55:59 -0000	1.7
  +++ FormatDateTag.java	6 Apr 2002 21:14:29 -0000	1.8
  @@ -73,7 +73,7 @@
       // Accessor methods
   
       // 'value' attribute
  -    public void setValue(String value) throws JspTagException {
  +    public void setValue(Object value) throws JspTagException {
           this.value = value;
   	this.valueSpecified = true;
       }
  
  
  

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