Remove redundant comments

Close HTML tags
diff --git a/src/main/java/org/apache/commons/csv/IOUtils.java b/src/main/java/org/apache/commons/csv/IOUtils.java
index a6c44b1..e5c51da 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 @@
 

     /**

      * Represents the end-of-file (or stream).

-     * @since 2.5 (made public)

      */

     private static final int EOF = -1;

 

@@ -82,15 +81,14 @@
     }

 

     /**

-     * <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 @@
     }

 

     /**

-     * <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