stefano     00/08/18 15:45:06

  Modified:    src/org/apache/cocoon/processor/xsp/library/java cookie.xsl
  Log:
  fixed compilation problem for java 1.1
  
  Revision  Changes    Path
  1.8       +2 -2      
xml-cocoon/src/org/apache/cocoon/processor/xsp/library/java/cookie.xsl
  
  Index: cookie.xsl
  ===================================================================
  RCS file: 
/home/cvs/xml-cocoon/src/org/apache/cocoon/processor/xsp/library/java/cookie.xsl,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- cookie.xsl        2000/03/01 16:13:48     1.7
  +++ cookie.xsl        2000/08/18 22:45:05     1.8
  @@ -334,7 +334,7 @@
   
       <xsp:logic>
         cookie.setMaxAge(
  -        Integer.ParseInt(
  +        Integer.parseInt(
             String.valueOf(
               <xsl:copy-of select="$expiry"/>
             )
  @@ -422,7 +422,7 @@
   
       <xsp:logic>
         cookie.setVersion(
  -        Integer.ParseInt(
  +        Integer.parseInt(
             String.valueOf(
               <xsl:copy-of select="$value"/>
             )
  
  
  

Reply via email to