diff --git a/src/java.base/share/classes/java/io/BufferedInputStream.java b/src/java.base/share/classes/java/io/BufferedInputStream.java index 9ad68e366cf..b9c881e0c9e 100644 --- a/src/java.base/share/classes/java/io/BufferedInputStream.java +++ b/src/java.base/share/classes/java/io/BufferedInputStream.java @@ -96,7 +96,7 @@ public class BufferedInputStream extends FilterInputStream { /** * The current position in the buffer. This is the index of the next - * character to be read from the {@code buf} array. + * byte to be read from the {@code buf} array. *
* This value is always in the range {@code 0} * through {@code count}. If it is less @@ -297,7 +297,7 @@ public class BufferedInputStream extends FilterInputStream { } /** - * Read characters into a portion of an array, reading from the underlying + * Read bytes into a portion of an array, reading from the underlying * stream at most once if necessary. */ private int read1(byte[] b, int off, int len) throws IOException { diff --git a/src/java.base/share/classes/java/io/ByteArrayInputStream.java b/src/java.base/share/classes/java/io/ByteArrayInputStream.java index 11f207787bd..08a3ec982d1 100644 --- a/src/java.base/share/classes/java/io/ByteArrayInputStream.java +++ b/src/java.base/share/classes/java/io/ByteArrayInputStream.java @@ -56,7 +56,7 @@ public class ByteArrayInputStream extends InputStream { protected byte[] buf; /** - * The index of the next character to read from the input stream buffer. + * The index of the next byte to read from the input stream buffer. * This value should always be nonnegative * and not larger than the value of {@code count}. * The next byte to be read from the input stream buffer @@ -80,7 +80,7 @@ public class ByteArrayInputStream extends InputStream { protected int mark = 0; /** - * The index one greater than the last valid character in the input + * The index one greater than the last valid byte in the input * stream buffer. * This value should always be nonnegative * and not larger than the length of {@code buf}. diff --git a/src/java.base/share/classes/java/io/SequenceInputStream.java b/src/java.base/share/classes/java/io/SequenceInputStream.java index 466091958f8..e3e11439406 100644 --- a/src/java.base/share/classes/java/io/SequenceInputStream.java +++ b/src/java.base/share/classes/java/io/SequenceInputStream.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 1994, 2022, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1994, 2023, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -134,7 +134,7 @@ public class SequenceInputStream extends InputStream { * {@inheritDoc} *
* This method - * tries to read one character from the current substream. If it + * tries to read one byte from the current substream. If it * reaches the end of the stream, it calls the {@code close} * method of the current substream and begins reading from the next * substream. @@ -163,7 +163,7 @@ public class SequenceInputStream extends InputStream { *
* The {@code read} method of {@code SequenceInputStream} * tries to read the data from the current substream. If it fails to - * read any characters because the substream has reached the end of + * read any bytes because the substream has reached the end of * the stream, it calls the {@code close} method of the current * substream and begins reading from the next substream. *