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 10cc0c92 No need for blank Javadoc lines between Javadoc @ tags
10cc0c92 is described below

commit 10cc0c924319e3a497064c347a6db20628a69065
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Thu Nov 28 12:30:19 2024 -0500

    No need for blank Javadoc lines between Javadoc @ tags
---
 src/main/java/org/apache/commons/csv/CSVFormat.java  | 7 -------
 src/main/java/org/apache/commons/csv/CSVPrinter.java | 1 -
 2 files changed, 8 deletions(-)

diff --git a/src/main/java/org/apache/commons/csv/CSVFormat.java 
b/src/main/java/org/apache/commons/csv/CSVFormat.java
index 743e3056..63eaa44e 100644
--- a/src/main/java/org/apache/commons/csv/CSVFormat.java
+++ b/src/main/java/org/apache/commons/csv/CSVFormat.java
@@ -1366,7 +1366,6 @@ public final class CSVFormat implements Serializable {
      *
      * @param source the string to check.
      * @param searchCh the character to search.
-     *
      * @return true if {@code c} contains a line break character
      */
     private static boolean contains(final String source, final char searchCh) {
@@ -1377,7 +1376,6 @@ public final class CSVFormat implements Serializable {
      * Returns true if the given string contains a line break character.
      *
      * @param source the string to check.
-     *
      * @return true if {@code c} contains a line break character.
      */
     private static boolean containsLineBreak(final String source) {
@@ -1401,7 +1399,6 @@ public final class CSVFormat implements Serializable {
      * Returns true if the given character is a line break character.
      *
      * @param c the character to check.
-     *
      * @return true if {@code c} is a line break character.
      */
     private static boolean isLineBreak(final char c) {
@@ -1412,7 +1409,6 @@ public final class CSVFormat implements Serializable {
      * Returns true if the given character is a line break character.
      *
      * @param c the character to check, may be null.
-     *
      * @return true if {@code c} is a line break character (and not null).
      */
     private static boolean isLineBreak(final Character c) {
@@ -1439,7 +1435,6 @@ public final class CSVFormat implements Serializable {
      * @param delimiter the char used for value separation, must not be a line 
break character
      * @return a new CSV format.
      * @throws IllegalArgumentException if the delimiter is a line break 
character
-     *
      * @see #DEFAULT
      * @see #RFC4180
      * @see #MYSQL
@@ -2671,7 +2666,6 @@ public final class CSVFormat implements Serializable {
      * Builds a new {@code CSVFormat} with whether to flush on close.
      *
      * @param autoFlush whether to flush on close.
-     *
      * @return A new CSVFormat that is equal to this but with the specified 
autoFlush setting.
      * @since 1.6
      * @deprecated Use {@link Builder#setAutoFlush(boolean)}
@@ -3032,7 +3026,6 @@ public final class CSVFormat implements Serializable {
      * Builds a new {@code CSVFormat} with the output quote policy of the 
format set to the specified value.
      *
      * @param quoteMode the quote policy to use for output.
-     *
      * @return A new CSVFormat that is equal to this but with the specified 
quote policy
      * @deprecated Use {@link Builder#setQuoteMode(QuoteMode)}
      */
diff --git a/src/main/java/org/apache/commons/csv/CSVPrinter.java 
b/src/main/java/org/apache/commons/csv/CSVPrinter.java
index a0177eda..643ebb1f 100644
--- a/src/main/java/org/apache/commons/csv/CSVPrinter.java
+++ b/src/main/java/org/apache/commons/csv/CSVPrinter.java
@@ -128,7 +128,6 @@ public final class CSVPrinter implements Flushable, 
Closeable {
     /**
      * Closes the underlying stream with an optional flush first.
      * @param flush whether to flush before the actual close.
-     *
      * @throws IOException
      *             If an I/O error occurs
      * @since 1.6

Reply via email to