Skip to content

Commit d69e911

Browse files
committed
Remove import that is only used in JavaDoc
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1617069 13f79535-47bb-0310-9956-ffa450edef68
1 parent a6a9259 commit d69e911

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
import java.io.Closeable;
2121
import java.io.File;
2222
import java.io.FileInputStream;
23-
import java.io.FileReader;
2423
import java.io.IOException;
2524
import java.io.InputStreamReader;
2625
import java.io.Reader;
@@ -136,7 +135,7 @@ public final class CSVParser implements Iterable<CSVRecord>, Closeable {
136135
* Creates a parser for the given {@link File}.
137136
*
138137
* <p><strong>Note:</strong> This method internally creates a FileReader using
139-
* {@link FileReader#FileReader(java.io.File)} which in turn relies on the default encoding of the JVM that
138+
* {@link java.io.FileReader#FileReader(java.io.File)} which in turn relies on the default encoding of the JVM that
140139
* is executing the code. If this is insufficient create a URL to the file and use
141140
* {@link #parse(URL, Charset, CSVFormat)}</p>
142141
*

0 commit comments

Comments
 (0)