Skip to content

Commit 8746645

Browse files
committed
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
1 parent 71ded2e commit 8746645

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@
2929
*/
3030
public class CSVFormat implements Serializable {
3131

32+
private static final long serialVersionUID = 1L;
33+
3234
/** According to RFC 4180, line breaks are delimited by CRLF */
3335
public static final String CRLF = "\r\n";
3436

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@
2727
*/
2828
public class CSVRecord implements Serializable, Iterable<String> {
2929

30+
private static final long serialVersionUID = 1L;
31+
3032
private static final String[] EMPTY_STRING_ARRAY = new String[0];
3133

3234
/** The values of the record */

0 commit comments

Comments
 (0)