We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 857f71f commit 23a264eCopy full SHA for 23a264e
1 file changed
src/test/java/org/apache/commons/csv/ExtendedBufferedReaderTest.java
@@ -55,7 +55,7 @@ public void testReadChar() throws Exception {
55
final String LF = "\n";
56
final String CR = "\r";
57
final String CRLF = CR + LF;
58
- final String LFCR = LF + CR;// easier to read the string below
+ final String LFCR = LF + CR; // easier to read the string below
59
final String test = "a" + LF + "b" + CR + "c" + LF + LF + "d" + CR + CR + "e" + LFCR + "f " + CRLF;
60
// EOL eol EOL EOL eol eol EOL+CR EOL
61
final int EOLeolct = 9;
0 commit comments