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/14 06:37:11 UTC

svn commit: r1398007 - /commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVFormat.java

Author: ggregory
Date: Sun Oct 14 04:37:10 2012
New Revision: 1398007

URL: http://svn.apache.org/viewvc?rev=1398007&view=rev
Log:
In-line comment.

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

Modified: commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVFormat.java
URL: http://svn.apache.org/viewvc/commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVFormat.java?rev=1398007&r1=1398006&r2=1398007&view=diff
==============================================================================
--- commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVFormat.java (original)
+++ commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVFormat.java Sun Oct 14 04:37:10 2012
@@ -516,7 +516,7 @@ public class CSVFormat implements Serial
             new CSVPrinter(out, this).println(values);
             return out.toString().trim();
         } catch (final IOException e) {
-            // should not happen
+            // should not happen because a StringWriter does not do IO.
             throw new IllegalStateException(e);
         }
     }