From d48bc1e6cf60c4fc82111951f27f34feb50cb290 Mon Sep 17 00:00:00 2001 From: Gary Gregory Date: Mon, 12 Sep 2022 12:38:04 -0700 Subject: [PATCH] Remove redundant comments Close HTML tags --- src/main/java/org/apache/commons/csv/IOUtils.java | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/src/main/java/org/apache/commons/csv/IOUtils.java b/src/main/java/org/apache/commons/csv/IOUtils.java index a6c44b15..e5c51da0 100644 --- a/src/main/java/org/apache/commons/csv/IOUtils.java +++ b/src/main/java/org/apache/commons/csv/IOUtils.java @@ -32,7 +32,6 @@ final class IOUtils { /** * Represents the end-of-file (or stream). - * @since 2.5 (made public) */ private static final int EOF = -1; @@ -82,15 +81,14 @@ final class IOUtils { } /** - *

- * Copied from Apache Commons IO. - *

* Copies chars from a large (over 2GB) {@code Reader} to a {@code Writer}. *

* This method buffers the input internally, so there is no need to use a * {@code BufferedReader}. + *

*

* The buffer size is given by {@link #DEFAULT_BUFFER_SIZE}. + *

* * @param input the {@code Reader} to read from * @param output the {@code Writer} to write to @@ -104,14 +102,11 @@ final class IOUtils { } /** - *

- * Copied from Apache Commons IO. - *

* Copies chars from a large (over 2GB) {@code Reader} to a {@code Writer}. *

* This method uses the provided buffer, so there is no need to use a * {@code BufferedReader}. - *

+ *

* * @param input the {@code Reader} to read from * @param output the {@code Writer} to write to