@@ -1366,7 +1366,6 @@ static <T> T[] clone(final T... values) {
1366
1366
*
1367
1367
* @param source the string to check.
1368
1368
* @param searchCh the character to search.
1369
- *
1370
1369
* @return true if {@code c} contains a line break character
1371
1370
*/
1372
1371
private static boolean contains (final String source , final char searchCh ) {
@@ -1377,7 +1376,6 @@ private static boolean contains(final String source, final char searchCh) {
1377
1376
* Returns true if the given string contains a line break character.
1378
1377
*
1379
1378
* @param source the string to check.
1380
- *
1381
1379
* @return true if {@code c} contains a line break character.
1382
1380
*/
1383
1381
private static boolean containsLineBreak (final String source ) {
@@ -1401,7 +1399,6 @@ static boolean isBlank(final String value) {
1401
1399
* Returns true if the given character is a line break character.
1402
1400
*
1403
1401
* @param c the character to check.
1404
- *
1405
1402
* @return true if {@code c} is a line break character.
1406
1403
*/
1407
1404
private static boolean isLineBreak (final char c ) {
@@ -1412,7 +1409,6 @@ private static boolean isLineBreak(final char c) {
1412
1409
* Returns true if the given character is a line break character.
1413
1410
*
1414
1411
* @param c the character to check, may be null.
1415
- *
1416
1412
* @return true if {@code c} is a line break character (and not null).
1417
1413
*/
1418
1414
private static boolean isLineBreak (final Character c ) {
@@ -1439,7 +1435,6 @@ private static boolean isTrimChar(final CharSequence charSequence, final int pos
1439
1435
* @param delimiter the char used for value separation, must not be a line break character
1440
1436
* @return a new CSV format.
1441
1437
* @throws IllegalArgumentException if the delimiter is a line break character
1442
- *
1443
1438
* @see #DEFAULT
1444
1439
* @see #RFC4180
1445
1440
* @see #MYSQL
@@ -2671,7 +2666,6 @@ public CSVFormat withAllowMissingColumnNames(final boolean allowMissingColumnNam
2671
2666
* Builds a new {@code CSVFormat} with whether to flush on close.
2672
2667
*
2673
2668
* @param autoFlush whether to flush on close.
2674
- *
2675
2669
* @return A new CSVFormat that is equal to this but with the specified autoFlush setting.
2676
2670
* @since 1.6
2677
2671
* @deprecated Use {@link Builder#setAutoFlush(boolean)}
@@ -3032,7 +3026,6 @@ public CSVFormat withQuote(final Character quoteChar) {
3032
3026
* Builds a new {@code CSVFormat} with the output quote policy of the format set to the specified value.
3033
3027
*
3034
3028
* @param quoteMode the quote policy to use for output.
3035
- *
3036
3029
* @return A new CSVFormat that is equal to this but with the specified quote policy
3037
3030
* @deprecated Use {@link Builder#setQuoteMode(QuoteMode)}
3038
3031
*/
0 commit comments