Skip to content

Commit d48bc1e

Browse files
committed
Remove redundant comments
Close HTML tags
1 parent 5d7690d commit d48bc1e

1 file changed

Lines changed: 3 additions & 8 deletions

File tree

src/main/java/org/apache/commons/csv/IOUtils.java

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ final class IOUtils {
3232

3333
/**
3434
* Represents the end-of-file (or stream).
35-
* @since 2.5 (made public)
3635
*/
3736
private static final int EOF = -1;
3837

@@ -82,15 +81,14 @@ static long copy(final Reader input, final Appendable output, final CharBuffer b
8281
}
8382

8483
/**
85-
* <p>
86-
* Copied from Apache Commons IO.
87-
* </p>
8884
* Copies chars from a large (over 2GB) {@code Reader} to a {@code Writer}.
8985
* <p>
9086
* This method buffers the input internally, so there is no need to use a
9187
* {@code BufferedReader}.
88+
* </p>
9289
* <p>
9390
* The buffer size is given by {@link #DEFAULT_BUFFER_SIZE}.
91+
* </p>
9492
*
9593
* @param input the {@code Reader} to read from
9694
* @param output the {@code Writer} to write to
@@ -104,14 +102,11 @@ static long copyLarge(final Reader input, final Writer output) throws IOExceptio
104102
}
105103

106104
/**
107-
* <p>
108-
* Copied from Apache Commons IO.
109-
* </p>
110105
* Copies chars from a large (over 2GB) {@code Reader} to a {@code Writer}.
111106
* <p>
112107
* This method uses the provided buffer, so there is no need to use a
113108
* {@code BufferedReader}.
114-
* <p>
109+
* </p>
115110
*
116111
* @param input the {@code Reader} to read from
117112
* @param output the {@code Writer} to write to

0 commit comments

Comments
 (0)