WebServer: Fix TIME_IN_THE_PAST constant definition

January 1st 1990 was a Monday, not Sunday [1].

[1] http://www.timeanddate.com/calendar/?year=1990&country=1

Change-Id: Ide8366a9dbc4f82404ebacc7d711573cb7f3f30e
This commit is contained in:
David Pursehouse 2016-05-07 22:10:38 +09:00
parent a0280aa3cc
commit ad5cba2354
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ public class WebServer {
private static final MimeTypes MIME_TYPES = new MimeTypes();
private static final String TIME_IN_THE_PAST = "Fri, 01 Jan 1990 00:00:00 GMT";
private static final String TIME_IN_THE_PAST = "Mon, 01 Jan 1990 00:00:00 GMT";
private final SourceHandler handler;
private final JsonExporter jsonExporter;