rwaldhoff    01/08/08 10:39:15

  Modified:    httpclient/src/java/org/apache/commons/httpclient
                        StreamInterceptor.java
  Log:
  Typo in the license header
  
  Revision  Changes    Path
  1.2       +13 -14    
jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/StreamInterceptor.java
  
  Index: StreamInterceptor.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/StreamInterceptor.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- StreamInterceptor.java    2001/04/25 18:42:52     1.1
  +++ StreamInterceptor.java    2001/08/08 17:39:15     1.2
  @@ -1,13 +1,13 @@
   /*
  - * $Header: 
/home/cvs/jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/StreamInterceptor.java,v
 1.1 2001/04/25 18:42:52 remm Exp $
  - * $Revision: 1.1 $
  - * $Date: 2001/04/25 18:42:52 $
  + * $Header: 
/home/cvs/jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/StreamInterceptor.java,v
 1.2 2001/08/08 17:39:15 rwaldhoff Exp $
  + * $Revision: 1.2 $
  + * $Date: 2001/08/08 17:39:15 $
    *
    * ====================================================================
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999 The Apache Software Foundation.  All rights 
  + * Copyright (c) 1999 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -15,7 +15,7 @@
    * are met:
    *
    * 1. Redistributions of source code must retain the above copyright
  - *    notice, this list of conditions and the following disclaimer. 
  + *    notice, this list of conditions and the following disclaimer.
    *
    * 2. Redistributions in binary form must reproduce the above copyright
    *    notice, this list of conditions and the following disclaimer in
  @@ -23,16 +23,15 @@
    *    distribution.
    *
    * 3. The end-user documentation included with the redistribution, if
  - *    any, must include the following acknowlegement:  
  - *       "This p        bytesRead(count);
  -roduct includes software developed by the 
  + *    any, must include the following acknowlegement:
  + *       "This product includes software developed by the
    *        Apache Software Foundation (http://www.apache.org/)."
    *    Alternately, this acknowlegement may appear in the software itself,
    *    if and wherever such third-party acknowlegements normally appear.
    *
    * 4. The names "The Jakarta Project", "Tomcat", and "Apache Software
    *    Foundation" must not be used to endorse or promote products derived
  - *    from this software without prior written permission. For written 
  + *    from this software without prior written permission. For written
    *    permission, please contact [EMAIL PROTECTED]
    *
    * 5. Products derived from this software may not be called "Apache"
  @@ -60,13 +59,13 @@
    *
    * [Additional notices, if required by prior licensing conditions]
    *
  - */ 
  + */
   
   package org.apache.commons.httpclient;
   
   /**
    * The stream interceptor.
  - * 
  + *
    * @author Remy Maucherat
    */
   
  @@ -78,11 +77,11 @@
   
       /**
        * Notification for bytes sent.
  -     * 
  +     *
        * @param b Array containing the bytes which are about to be written; this
        * parameter can be null when writing a single byte
        * @param data If b is not null, contains the offset from which the bytes
  -     * will be read in the array; otherwise, if a single byte is written, 
  +     * will be read in the array; otherwise, if a single byte is written,
        * data will have the byte's value
        * @param count Number of bytes written, or 1 if a single byte is written
        */
  @@ -91,11 +90,11 @@
   
       /**
        * Notification for bytes read, which can be used for filtering.
  -     * 
  +     *
        * @param b Array containing the bytes which are were read; this
        * parameter can be null when a single byte was read
        * @param data If b is not null, contains the offset from which the bytes
  -     * will be read in the array; otherwise, if a single byte is read, 
  +     * will be read in the array; otherwise, if a single byte is read,
        * data will have the byte's value
        * @param count Number of bytes read, or 1 if a single byte was read
        */
  
  
  

Reply via email to