Define NODATE as Date(-1), or a date before 1970.

This commit is contained in:
Scott Crosby 2010-12-14 11:24:47 -06:00
parent f9de3cfc3c
commit b26c2e7da1
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(0);
public static final Date NODATE = new Date(-1);
/** Get a string based on the index used.
*