This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-csv.git
The following commit(s) were added to refs/heads/master by this push: new 23a264e3 Use Checkstyle WhitespaceAfter 23a264e3 is described below commit 23a264e311b84db115430aa1f2e7a101b59eda80 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sat May 4 15:34:10 2024 -0400 Use Checkstyle WhitespaceAfter --- src/test/java/org/apache/commons/csv/ExtendedBufferedReaderTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/org/apache/commons/csv/ExtendedBufferedReaderTest.java b/src/test/java/org/apache/commons/csv/ExtendedBufferedReaderTest.java index 20c9dedd..5e785124 100644 --- a/src/test/java/org/apache/commons/csv/ExtendedBufferedReaderTest.java +++ b/src/test/java/org/apache/commons/csv/ExtendedBufferedReaderTest.java @@ -55,7 +55,7 @@ public class ExtendedBufferedReaderTest { final String LF = "\n"; final String CR = "\r"; final String CRLF = CR + LF; - final String LFCR = LF + CR;// easier to read the string below + final String LFCR = LF + CR; // easier to read the string below final String test = "a" + LF + "b" + CR + "c" + LF + LF + "d" + CR + CR + "e" + LFCR + "f " + CRLF; // EOL eol EOL EOL eol eol EOL+CR EOL final int EOLeolct = 9;