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 2012/10/16 13:51:22 UTC

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

Author: ggregory
Date: Tue Oct 16 11:51:22 2012
New Revision: 1398749

URL: http://svn.apache.org/viewvc?rev=1398749&view=rev
Log:
Add // TODO comment.

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=1398749&r1=1398748&r2=1398749&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 Tue Oct 16 11:51:22 2012
@@ -264,7 +264,7 @@ public class CSVParser implements Iterab
                 try {
                     return nextRecord();
                 } catch (final IOException e) {
-                    // This is not great, throw an ISE instead?
+                    // TODO: This is not great, throw an ISE instead?
                     throw new RuntimeException(e);
                 }
             }