src/java.xml/share/classes/com/sun/org/apache/bcel/internal/util/ByteSequence.java
changeset 55496 8e0ae3830fca
parent 47216 71c04702a3d5
equal deleted inserted replaced
55495:badfa812b82a 55496:8e0ae3830fca
    27 /**
    27 /**
    28  * Utility class that implements a sequence of bytes which can be read
    28  * Utility class that implements a sequence of bytes which can be read
    29  * via the `readByte()' method. This is used to implement a wrapper for the
    29  * via the `readByte()' method. This is used to implement a wrapper for the
    30  * Java byte code stream to gain some more readability.
    30  * Java byte code stream to gain some more readability.
    31  *
    31  *
    32  * @version $Id: ByteSequence.java 1747278 2016-06-07 17:28:43Z britter $
    32  * @version $Id$
    33  */
    33  */
    34 public final class ByteSequence extends DataInputStream {
    34 public final class ByteSequence extends DataInputStream {
    35 
    35 
    36     private final ByteArrayStream byteStream;
    36     private final ByteArrayStream byteStream;
    37 
    37