Remove redundant comments

Close HTML tags
This commit is contained in:
Gary Gregory 2022-09-12 12:38:04 -07:00
parent 5d7690d1fe
commit d48bc1e6cf
1 changed files with 3 additions and 8 deletions

View File

@ -32,7 +32,6 @@ final class IOUtils {
/** /**
* Represents the end-of-file (or stream). * Represents the end-of-file (or stream).
* @since 2.5 (made public)
*/ */
private static final int EOF = -1; private static final int EOF = -1;
@ -82,15 +81,14 @@ final class IOUtils {
} }
/** /**
* <p>
* Copied from Apache Commons IO.
* </p>
* Copies chars from a large (over 2GB) {@code Reader} to a {@code Writer}. * Copies chars from a large (over 2GB) {@code Reader} to a {@code Writer}.
* <p> * <p>
* This method buffers the input internally, so there is no need to use a * This method buffers the input internally, so there is no need to use a
* {@code BufferedReader}. * {@code BufferedReader}.
* </p>
* <p> * <p>
* The buffer size is given by {@link #DEFAULT_BUFFER_SIZE}. * The buffer size is given by {@link #DEFAULT_BUFFER_SIZE}.
* </p>
* *
* @param input the {@code Reader} to read from * @param input the {@code Reader} to read from
* @param output the {@code Writer} to write to * @param output the {@code Writer} to write to
@ -104,14 +102,11 @@ final class IOUtils {
} }
/** /**
* <p>
* Copied from Apache Commons IO.
* </p>
* Copies chars from a large (over 2GB) {@code Reader} to a {@code Writer}. * Copies chars from a large (over 2GB) {@code Reader} to a {@code Writer}.
* <p> * <p>
* This method uses the provided buffer, so there is no need to use a * This method uses the provided buffer, so there is no need to use a
* {@code BufferedReader}. * {@code BufferedReader}.
* <p> * </p>
* *
* @param input the {@code Reader} to read from * @param input the {@code Reader} to read from
* @param output the {@code Writer} to write to * @param output the {@code Writer} to write to