Javadoc
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1301298 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
3362f9c9d8
commit
d45289f384
|
@ -39,7 +39,7 @@ public class CSVFormat implements Serializable {
|
|||
private final boolean trailingSpacesIgnored;
|
||||
private final boolean unicodeEscapesInterpreted;
|
||||
private final boolean emptyLinesIgnored;
|
||||
private final String lineSeparator;
|
||||
private final String lineSeparator; // for output
|
||||
|
||||
|
||||
/**
|
||||
|
@ -91,7 +91,7 @@ public class CSVFormat implements Serializable {
|
|||
* @param trailingSpacesIgnored <tt>true</tt> when trailing whitespaces should be ignored
|
||||
* @param unicodeEscapesInterpreted <tt>true</tt> when unicode escapes should be interpreted
|
||||
* @param emptyLinesIgnored <tt>true</tt> when the parser should skip emtpy lines
|
||||
* @param lineSeparator the line separator to use.
|
||||
* @param lineSeparator the line separator to use for output
|
||||
*/
|
||||
CSVFormat(
|
||||
char delimiter,
|
||||
|
@ -399,4 +399,5 @@ public class CSVFormat implements Serializable {
|
|||
|
||||
return out.toString().trim();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue