File tree Expand file tree Collapse file tree
src/main/java/org/apache/commons/csv Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ public class CSVFormat implements Serializable {
3939 private final boolean trailingSpacesIgnored ;
4040 private final boolean unicodeEscapesInterpreted ;
4141 private final boolean emptyLinesIgnored ;
42- private final String lineSeparator ;
42+ private final String lineSeparator ; // for output
4343
4444
4545 /**
@@ -91,7 +91,7 @@ public class CSVFormat implements Serializable {
9191 * @param trailingSpacesIgnored <tt>true</tt> when trailing whitespaces should be ignored
9292 * @param unicodeEscapesInterpreted <tt>true</tt> when unicode escapes should be interpreted
9393 * @param emptyLinesIgnored <tt>true</tt> when the parser should skip emtpy lines
94- * @param lineSeparator the line separator to use.
94+ * @param lineSeparator the line separator to use for output
9595 */
9696 CSVFormat (
9797 char delimiter ,
@@ -399,4 +399,5 @@ public String format(String... values) {
399399
400400 return out .toString ().trim ();
401401 }
402+
402403}
You can’t perform that action at this time.
0 commit comments