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:
parent
71ded2eff0
commit
87466459c0
|
@ -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";
|
||||
|
||||
|
|
|
@ -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 */
|
||||
|
|
Loading…
Reference in New Issue