src/java.base/share/classes/java/io/FilterInputStream.java
changeset 59201 b24f4caa1411
parent 58288 48e480e56aad
equal deleted inserted replaced
59200:a686b67a59d9 59201:b24f4caa1411
    40  * and fields.
    40  * and fields.
    41  *
    41  *
    42  * @author  Jonathan Payne
    42  * @author  Jonathan Payne
    43  * @since   1.0
    43  * @since   1.0
    44  */
    44  */
    45 public
    45 public class FilterInputStream extends InputStream {
    46 class FilterInputStream extends InputStream {
       
    47     /**
    46     /**
    48      * The input stream to be filtered.
    47      * The input stream to be filtered.
    49      */
    48      */
    50     protected volatile InputStream in;
    49     protected volatile InputStream in;
    51 
    50