Add default serialVersionUID to two classes.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1383556 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2012-09-11 19:03:03 +00:00
parent 71ded2eff0
commit 87466459c0
2 changed files with 4 additions and 0 deletions

View File

@ -29,6 +29,8 @@ import java.io.StringWriter;
*/
public class CSVFormat implements Serializable {
private static final long serialVersionUID = 1L;
/** According to RFC 4180, line breaks are delimited by CRLF */
public static final String CRLF = "\r\n";

View File

@ -27,6 +27,8 @@ import java.util.Map;
*/
public class CSVRecord implements Serializable, Iterable<String> {
private static final long serialVersionUID = 1L;
private static final String[] EMPTY_STRING_ARRAY = new String[0];
/** The values of the record */