You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2014/10/30 15:15:24 UTC

svn commit: r1635507 - /commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVParser.java

Author: ggregory
Date: Thu Oct 30 14:15:24 2014
New Revision: 1635507

URL: http://svn.apache.org/r1635507
Log:
Remove in-line comment that no longer applies.

Modified:
    commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVParser.java

Modified: commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVParser.java
URL: http://svn.apache.org/viewvc/commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVParser.java?rev=1635507&r1=1635506&r2=1635507&view=diff
==============================================================================
--- commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVParser.java (original)
+++ commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVParser.java Thu Oct 30 14:15:24 2014
@@ -154,7 +154,6 @@ public final class CSVParser implements 
     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);
     }