Set the default date to be Jan 1 1970, not the current date.
This commit is contained in:
parent
3b1400109a
commit
f2d631527f
|
|
@ -25,7 +25,7 @@ public abstract class BinaryParser implements BlockReaderAdapter {
|
|||
} else
|
||||
return NODATE;
|
||||
}
|
||||
public static final Date NODATE = new Date();
|
||||
public static final Date NODATE = new Date(0);
|
||||
|
||||
/** Get a string based on the index used.
|
||||
*
|
||||
|
|
|
|||
Loading…
Reference in New Issue