Set the default date to be Jan 1 1970, not the current date.

This commit is contained in:
Scott Crosby 2010-12-14 10:01:45 -06:00
parent 3b1400109a
commit f2d631527f
1 changed files with 1 additions and 1 deletions

View File

@ -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.
*