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
commit f7581b7c92849c66787e2647aedfd9549267be50 Author: Gary D. Gregory <[email protected]> AuthorDate: Sun Jun 22 15:13:31 2025 -0400 Reduce vertical whitespace --- src/main/java/org/apache/commons/csv/Lexer.java | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main/java/org/apache/commons/csv/Lexer.java b/src/main/java/org/apache/commons/csv/Lexer.java index 0e5f3686..3d00fe0b 100644 --- a/src/main/java/org/apache/commons/csv/Lexer.java +++ b/src/main/java/org/apache/commons/csv/Lexer.java @@ -340,7 +340,6 @@ final class Lexer implements Closeable { int c; while (true) { c = reader.read(); - if (isQuoteChar(c)) { if (isQuoteChar(reader.peek())) { // double or escaped encapsulator -> add single encapsulator to token
