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/12 16:15:26 UTC

svn commit: r1397574 - /commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/Constants.java

Author: ggregory
Date: Fri Oct 12 14:15:25 2012
New Revision: 1397574

URL: http://svn.apache.org/viewvc?rev=1397574&view=rev
Log:
Javadoc.

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

Modified: commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/Constants.java
URL: http://svn.apache.org/viewvc/commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/Constants.java?rev=1397574&r1=1397573&r2=1397574&view=diff
==============================================================================
--- commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/Constants.java (original)
+++ commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/Constants.java Fri Oct 12 14:15:25 2012
@@ -24,7 +24,12 @@ class Constants {
     
     static final char BELL = '\b';
     static final char COMMA = ',';
+    
+    /**
+     * Starts a comment, the remainder of the line is the comment.
+     */
     static final char COMMENT = '#';
+    
     static final char CR = '\r';
     static final char DOUBLE_QUOTE = '"';
     static final char ESCAPE = '\\';