This is an automated email from the ASF dual-hosted git repository.
garydgregory 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 67312386 Javadoc
67312386 is described below
commit 673123864d868bc204fca916f284d301e046f555
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Aug 2 15:50:22 2026 -0400
Javadoc
---
src/main/java/org/apache/commons/csv/CSVParser.java | 4 ++--
src/main/java/org/apache/commons/csv/CSVPrinter.java | 2 +-
src/test/java/org/apache/commons/csv/UserGuideTest.java | 2 +-
3 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/main/java/org/apache/commons/csv/CSVParser.java
b/src/main/java/org/apache/commons/csv/CSVParser.java
index ef0fbc0f..891539e8 100644
--- a/src/main/java/org/apache/commons/csv/CSVParser.java
+++ b/src/main/java/org/apache/commons/csv/CSVParser.java
@@ -505,7 +505,7 @@ public final class CSVParser implements
Iterable<CSVRecord>, Closeable {
* Constructs a new instance from a builder.
*
* @param builder The source builder.
- * @throws IOException if an I/O error occurs.
+ * @throws IOException Thrown if an I/O error occurs.
*/
@SuppressWarnings("resource") // Lexer manages ExtendedBufferedReader.
private CSVParser(final Builder builder) throws IOException {
@@ -609,7 +609,7 @@ public final class CSVParser implements
Iterable<CSVRecord>, Closeable {
* Creates the name to index mapping if the format defines a header.
*
* @return null if the format has no header.
- * @throws IOException if there is a problem reading the header or
skipping the first record
+ * @throws IOException Thrown if there is a problem reading the header or
skipping the first record
* @throws CSVException on invalid input.
*/
private Headers createHeaders() throws IOException {
diff --git a/src/main/java/org/apache/commons/csv/CSVPrinter.java
b/src/main/java/org/apache/commons/csv/CSVPrinter.java
index 98c2d107..32343170 100644
--- a/src/main/java/org/apache/commons/csv/CSVPrinter.java
+++ b/src/main/java/org/apache/commons/csv/CSVPrinter.java
@@ -541,7 +541,7 @@ public final class CSVPrinter implements Flushable,
Closeable {
* @param resultSet source of row data.
* @param printHeader whether to print headers.
* @throws IOException If an I/O error occurs
- * @throws SQLException if a database access error occurs
+ * @throws SQLException Thrown if a database access error occurs
* @since 1.9.0
*/
public void printRecords(final ResultSet resultSet, final boolean
printHeader) throws SQLException, IOException {
diff --git a/src/test/java/org/apache/commons/csv/UserGuideTest.java
b/src/test/java/org/apache/commons/csv/UserGuideTest.java
index 42292fab..814a7e80 100644
--- a/src/test/java/org/apache/commons/csv/UserGuideTest.java
+++ b/src/test/java/org/apache/commons/csv/UserGuideTest.java
@@ -45,7 +45,7 @@ class UserGuideTest {
*
* @param path The path to read.
* @return A new InputStreamReader for UTF-8 bytes.
- * @throws IOException if an I/O error occurs.
+ * @throws IOException Thrown if an I/O error occurs.
*/
public InputStreamReader newReader(final Path path) throws IOException {
return new InputStreamReader(BOMInputStream.builder()