larryi      01/10/19 19:53:39

  Modified:    src/share/org/apache/jasper/runtime JspFactoryImpl.java
  Log:
  Fix for Bugzilla 4260.
  
  Submitted by: Udo Stark
  
  Revision  Changes    Path
  1.14      +4 -4      
jakarta-tomcat/src/share/org/apache/jasper/runtime/JspFactoryImpl.java
  
  Index: JspFactoryImpl.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat/src/share/org/apache/jasper/runtime/JspFactoryImpl.java,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- JspFactoryImpl.java       2001/04/21 19:54:34     1.13
  +++ JspFactoryImpl.java       2001/10/20 02:53:39     1.14
  @@ -1,7 +1,7 @@
   /*
  - * $Header: 
/home/cvs/jakarta-tomcat/src/share/org/apache/jasper/runtime/JspFactoryImpl.java,v 
1.13 2001/04/21 19:54:34 costin Exp $
  - * $Revision: 1.13 $
  - * $Date: 2001/04/21 19:54:34 $
  + * $Header: 
/home/cvs/jakarta-tomcat/src/share/org/apache/jasper/runtime/JspFactoryImpl.java,v 
1.14 2001/10/20 02:53:39 larryi Exp $
  + * $Revision: 1.14 $
  + * $Date: 2001/10/20 02:53:39 $
    *
    * ====================================================================
    * 
  @@ -120,7 +120,7 @@
           try {
            PageContext pc;
            if( usePool ) {
  -             pc=(PageContextImpl)pool.get();
  +             pc=(PageContext)pool.get();
                if( pc == null ) pc= new PageContextImpl(this);
            } else {
                pc =  new PageContextImpl(this);
  
  
  


Reply via email to