removing mistakenly add block comment

This commit is contained in:
gbidsilva 2023-08-25 17:27:48 +05:30
parent 72dc36be77
commit 9fd815e442

View File

@ -520,25 +520,6 @@ public final class CSVFormat implements Serializable {
return this;
}
/**
* Gets the character marking the start of a line comment.
* <p>
* The comment format for each line is:
* </p>
* <pre>
* CommentMarker SPACE CommentArrayElement
* </pre>
* <p>
* For example, using a comment marker {@code '#'} and a comment array {@code comments ["line 1", "line 2"]}:
* </p>
* <pre>
* # line 1
* # line 2
* </pre>
*
* @return the comment start marker, may be {@code null}
*/
/**
* Sets the header comments set to the given values. The comments will be printed first, before the headers. This setting is ignored by the parser.
* <p>