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 04e83559 Javadoc
04e83559 is described below
commit 04e83559bc3b81338f6ea595f1e710751fb5bee7
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Jan 4 12:36:41 2026 -0500
Javadoc
Add an empty line before a Javadoc comment
---
src/main/java/org/apache/commons/csv/CSVParser.java | 1 +
src/main/java/org/apache/commons/csv/Token.java | 1 +
2 files changed, 2 insertions(+)
diff --git a/src/main/java/org/apache/commons/csv/CSVParser.java
b/src/main/java/org/apache/commons/csv/CSVParser.java
index 538bb395..bce62ea5 100644
--- a/src/main/java/org/apache/commons/csv/CSVParser.java
+++ b/src/main/java/org/apache/commons/csv/CSVParser.java
@@ -269,6 +269,7 @@ public final class CSVParser implements
Iterable<CSVRecord>, Closeable {
throw new UnsupportedOperationException();
}
}
+
/**
* Header information based on name and position.
*/
diff --git a/src/main/java/org/apache/commons/csv/Token.java
b/src/main/java/org/apache/commons/csv/Token.java
index 17eb4c77..87af3356 100644
--- a/src/main/java/org/apache/commons/csv/Token.java
+++ b/src/main/java/org/apache/commons/csv/Token.java
@@ -30,6 +30,7 @@ import static org.apache.commons.csv.Token.Type.INVALID;
final class Token {
enum Type {
+
/** Token has no valid content, that is, is in its initialized state.
*/
INVALID,