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:
Gary D. Gregory 2014-10-30 14:15:24 +00:00
parent 0c4424bb20
commit e977d7e4b5
1 changed files with 0 additions and 1 deletions

View File

@ -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);
}