You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/main/java/org/apache/commons/csv/CSVFormat.java
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -521,7 +521,7 @@ public Builder setHeader(final String... header) {
521
521
}
522
522
523
523
/**
524
-
* 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.
524
+
* Sets the header comments set to the given values. The comments will be printed first with the provided comment marker set by {@link Builder#setCommentMarker(char)}, before the headers. This setting is ignored by the parser.
525
525
*
526
526
* <pre>
527
527
* builder.setHeaderComments("Generated by Apache Commons CSV.", Instant.now());
@@ -536,7 +536,7 @@ public Builder setHeaderComments(final Object... headerComments) {
536
536
}
537
537
538
538
/**
539
-
* 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.
539
+
* Sets the header comments set to the given values. The comments will be printed first with the provided comment marker set by {@link Builder#setCommentMarker(char)}, before the headers. This setting is ignored by the parser.
540
540
*
541
541
* <pre>
542
542
* Builder.setHeaderComments("Generated by Apache Commons CSV.", Instant.now());
0 commit comments