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

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

Author: britter
Date: Sun Aug 10 08:53:42 2014
New Revision: 1617069

URL: http://svn.apache.org/r1617069
Log:
Remove import that is only used in JavaDoc

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=1617069&r1=1617068&r2=1617069&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 Sun Aug 10 08:53:42 2014
@@ -20,7 +20,6 @@ package org.apache.commons.csv;
 import java.io.Closeable;
 import java.io.File;
 import java.io.FileInputStream;
-import java.io.FileReader;
 import java.io.IOException;
 import java.io.InputStreamReader;
 import java.io.Reader;
@@ -136,7 +135,7 @@ public final class CSVParser implements 
      * Creates a parser for the given {@link File}.
      *
      * <p><strong>Note:</strong> This method internally creates a FileReader using
-     * {@link FileReader#FileReader(java.io.File)} which in turn relies on the default encoding of the JVM that
+     * {@link java.io.FileReader#FileReader(java.io.File)} which in turn relies on the default encoding of the JVM that
      * is executing the code. If this is insufficient create a URL to the file and use
      * {@link #parse(URL, Charset, CSVFormat)}</p>
      *