costin      01/04/28 13:52:17

  Modified:    src/share/org/apache/jasper/runtime JspWriterImpl.java
  Log:
  Get rid of the annoying warning compiling jasper ( with jikes )
  
  Revision  Changes    Path
  1.8       +4 -4      
jakarta-tomcat/src/share/org/apache/jasper/runtime/JspWriterImpl.java
  
  Index: JspWriterImpl.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat/src/share/org/apache/jasper/runtime/JspWriterImpl.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- JspWriterImpl.java        2001/03/02 06:56:19     1.7
  +++ JspWriterImpl.java        2001/04/28 20:52:16     1.8
  @@ -1,7 +1,7 @@
   /*
  - * $Header: 
/home/cvs/jakarta-tomcat/src/share/org/apache/jasper/runtime/JspWriterImpl.java,v 1.7 
2001/03/02 06:56:19 costin Exp $
  - * $Revision: 1.7 $
  - * $Date: 2001/03/02 06:56:19 $
  + * $Header: 
/home/cvs/jakarta-tomcat/src/share/org/apache/jasper/runtime/JspWriterImpl.java,v 1.8 
2001/04/28 20:52:16 costin Exp $
  + * $Revision: 1.8 $
  + * $Date: 2001/04/28 20:52:16 $
    *
    * ====================================================================
    * 
  @@ -385,7 +385,7 @@
       static {
        try {
            lineSeparator =  System.getProperty("line.separator");
  -     } catch( Exception ex ) {
  +     } catch( RuntimeException ex ) {
            lineSeparator="\r\n";
        }
       }
  
  
  

Reply via email to