Remove in-line comment that no longer applies.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1635507 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
0c4424bb20
commit
e977d7e4b5
|
@ -154,7 +154,6 @@ public final class CSVParser implements Iterable<CSVRecord>, Closeable {
|
|||
public static CSVParser parse(final File file, final Charset charset, final CSVFormat format) throws IOException {
|
||||
Assertions.notNull(file, "file");
|
||||
Assertions.notNull(format, "format");
|
||||
// Use the default Charset explicitly
|
||||
return new CSVParser(new InputStreamReader(new FileInputStream(file), charset), format);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue