You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2022/09/12 19:38:08 UTC

[commons-csv] branch master updated: Remove redundant comments

This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-csv.git


The following commit(s) were added to refs/heads/master by this push:
     new d48bc1e6 Remove redundant comments
d48bc1e6 is described below

commit d48bc1e6cf60c4fc82111951f27f34feb50cb290
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Mon Sep 12 12:38:04 2022 -0700

    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 {
     }
 
     /**
-     * <p>
-     * Copied from Apache Commons IO.
-     * </p>
      * Copies chars from a large (over 2GB) {@code Reader} to a {@code Writer}.
      * <p>
      * This method buffers the input internally, so there is no need to use a
      * {@code BufferedReader}.
+     * </p>
      * <p>
      * The buffer size is given by {@link #DEFAULT_BUFFER_SIZE}.
+     * </p>
      *
      * @param input the {@code Reader} to read from
      * @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}.
      * <p>
      * This method uses the provided buffer, so there is no need to use a
      * {@code BufferedReader}.
-     * <p>
+     * </p>
      *
      * @param input the {@code Reader} to read from
      * @param output the {@code Writer} to write to