git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1397770 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2012-10-13 05:30:00 +00:00
parent 48b26f82f7
commit ba609af7e3
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ public class CSVFormat implements Serializable {
/**
* Constant char to be used for disabling comments, escapes and encapsulation. The value -2 is used because it
* won't be confused with an EOF signal (-1), and because the unicode value FFFE would be encoded as two chars
* won't be confused with an EOF signal (-1), and because the Unicode value {@code FFFE} would be encoded as two chars
* (using surrogates) and thus there should never be a collision with a real text char.
*/
static final char DISABLED = '\ufffe';