@@ -1366,7 +1366,6 @@ static <T> T[] clone(final T... values) {
13661366 *
13671367 * @param source the string to check.
13681368 * @param searchCh the character to search.
1369- *
13701369 * @return true if {@code c} contains a line break character
13711370 */
13721371 private static boolean contains (final String source , final char searchCh ) {
@@ -1377,7 +1376,6 @@ private static boolean contains(final String source, final char searchCh) {
13771376 * Returns true if the given string contains a line break character.
13781377 *
13791378 * @param source the string to check.
1380- *
13811379 * @return true if {@code c} contains a line break character.
13821380 */
13831381 private static boolean containsLineBreak (final String source ) {
@@ -1401,7 +1399,6 @@ static boolean isBlank(final String value) {
14011399 * Returns true if the given character is a line break character.
14021400 *
14031401 * @param c the character to check.
1404- *
14051402 * @return true if {@code c} is a line break character.
14061403 */
14071404 private static boolean isLineBreak (final char c ) {
@@ -1412,7 +1409,6 @@ private static boolean isLineBreak(final char c) {
14121409 * Returns true if the given character is a line break character.
14131410 *
14141411 * @param c the character to check, may be null.
1415- *
14161412 * @return true if {@code c} is a line break character (and not null).
14171413 */
14181414 private static boolean isLineBreak (final Character c ) {
@@ -1439,7 +1435,6 @@ private static boolean isTrimChar(final CharSequence charSequence, final int pos
14391435 * @param delimiter the char used for value separation, must not be a line break character
14401436 * @return a new CSV format.
14411437 * @throws IllegalArgumentException if the delimiter is a line break character
1442- *
14431438 * @see #DEFAULT
14441439 * @see #RFC4180
14451440 * @see #MYSQL
@@ -2671,7 +2666,6 @@ public CSVFormat withAllowMissingColumnNames(final boolean allowMissingColumnNam
26712666 * Builds a new {@code CSVFormat} with whether to flush on close.
26722667 *
26732668 * @param autoFlush whether to flush on close.
2674- *
26752669 * @return A new CSVFormat that is equal to this but with the specified autoFlush setting.
26762670 * @since 1.6
26772671 * @deprecated Use {@link Builder#setAutoFlush(boolean)}
@@ -3032,7 +3026,6 @@ public CSVFormat withQuote(final Character quoteChar) {
30323026 * Builds a new {@code CSVFormat} with the output quote policy of the format set to the specified value.
30333027 *
30343028 * @param quoteMode the quote policy to use for output.
3035- *
30363029 * @return A new CSVFormat that is equal to this but with the specified quote policy
30373030 * @deprecated Use {@link Builder#setQuoteMode(QuoteMode)}
30383031 */
0 commit comments