Skip to content

Commit d45289f

Browse files
committed
Javadoc
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1301298 13f79535-47bb-0310-9956-ffa450edef68
1 parent 3362f9c commit d45289f

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

src/main/java/org/apache/commons/csv/CSVFormat.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)