remm        02/03/08 15:48:32

  Modified:    coyote/src/java/org/apache/coyote Response.java
  Log:
  - Cleanup.
  
  Revision  Changes    Path
  1.6       +9 -7      
jakarta-tomcat-connectors/coyote/src/java/org/apache/coyote/Response.java
  
  Index: Response.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat-connectors/coyote/src/java/org/apache/coyote/Response.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- Response.java     7 Mar 2002 22:43:29 -0000       1.5
  +++ Response.java     8 Mar 2002 23:48:32 -0000       1.6
  @@ -136,7 +136,7 @@
   
   
       /**
  -     * HTTP specific fields (remove them ?)
  +     * HTTP specific fields.
        */
       protected String contentType = Constants.DEFAULT_CONTENT_TYPE;
       protected String contentLanguage = null;
  @@ -145,13 +145,15 @@
       private Locale locale = Constants.DEFAULT_LOCALE;
   
       /**
  -     * FIXME: Remove.
  +     * Holds request error exception.
        */
  -    // holds request error exception
  -    // set this just once during request processing
  -    Exception errorException = null;
  -    // holds request error URI
  -    String errorURI = null;
  +    protected Exception errorException = null;
  +
  +
  +    /**
  +     * Request error URI.
  +     */
  +    protected String errorURI = null;
   
   
       // ------------------------------------------------------------- Properties
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to