File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
src/main/java/org/apache/commons/csv Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -37,10 +37,10 @@ final class Constants {
3737
3838 static final char CR = '\r' ;
3939
40- /** RFC 4180 defines line breaks as CRLF */
40+ /** RFC 4180 defines line breaks as CRLF. */
4141 static final String CRLF = "\r \n " ;
4242
43- static final Character DOUBLE_QUOTE_CHAR = Character .valueOf ('"' ); // Explicit (un)boxing is intentional
43+ static final Character DOUBLE_QUOTE_CHAR = Character .valueOf ('"' ); // Explicit (un)boxing is intentional.
4444
4545 static final String EMPTY = "" ;
4646
@@ -67,7 +67,7 @@ final class Constants {
6767
6868 static final char PIPE = '|' ;
6969
70- /** ASCII record separator */
70+ /** ASCII record separator. */
7171 static final char RS = 30 ;
7272
7373 static final char SP = ' ' ;
@@ -76,10 +76,10 @@ final class Constants {
7676
7777 static final char TAB = '\t' ;
7878
79- /** Undefined state for the lookahead char */
79+ /** Undefined state for the lookahead char. */
8080 static final int UNDEFINED = -2 ;
8181
82- /** ASCII unit separator */
82+ /** ASCII unit separator. */
8383 static final char US = 31 ;
8484
8585 /** No instances. */
You can’t perform that action at this time.
0 commit comments