From 155a76906a1c65a95ac144cc6aa77b9c9a1cbbfe Mon Sep 17 00:00:00 2001 From: Gary Gregory Date: Tue, 29 Dec 2020 14:45:02 -0500 Subject: [PATCH] Better Javadoc. --- src/main/java/org/apache/commons/csv/CSVFormat.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/commons/csv/CSVFormat.java b/src/main/java/org/apache/commons/csv/CSVFormat.java index 652b4b9e80..cd621bb925 100644 --- a/src/main/java/org/apache/commons/csv/CSVFormat.java +++ b/src/main/java/org/apache/commons/csv/CSVFormat.java @@ -1626,9 +1626,9 @@ private CharSequence trim(final CharSequence charSequence) { } /** - * Verifies the consistency of the parameters and throws an IllegalArgumentException if necessary. + * Verifies the validity and consistency of the attributes, and throws an IllegalArgumentException if necessary. * - * @throws IllegalArgumentException + * @throws IllegalArgumentException Throw when any attribute is invalid or inconsistent with other attributes. */ private void validate() throws IllegalArgumentException { if (isLineBreak(delimiter)) {