Refactor SimpleDate
This commit is contained in:
parent
9b640acd53
commit
7dd1898761
|
@ -14,9 +14,9 @@ import java.util.regex.Pattern;
|
||||||
|
|
||||||
public class SimpleDate implements Serializable, Comparable<Object> {
|
public class SimpleDate implements Serializable, Comparable<Object> {
|
||||||
|
|
||||||
private int year;
|
protected int year;
|
||||||
private int month;
|
protected int month;
|
||||||
private int day;
|
protected int day;
|
||||||
|
|
||||||
protected SimpleDate() {
|
protected SimpleDate() {
|
||||||
// used by serializer
|
// used by serializer
|
||||||
|
|
Loading…
Reference in New Issue