Fixing typo in history check.

Change-Id: Icad0d8f18951dd09c4acb7b4dfb09c019368c0a5
This commit is contained in:
Winson
2015-12-03 10:59:07 -08:00
committed by Winson Chung
parent 0e0d85c23c
commit 0c1a9b8959

View File

@@ -48,7 +48,8 @@ public class RecentsTaskLoadPlan {
private static boolean DEBUG = false;
private static int MIN_NUM_TASKS = 5;
private static int SESSION_BEGIN_TIME = 60 /* s/min */ * 60 /* min/hr */ * 6 /* hrs */;
private static int SESSION_BEGIN_TIME = 1000 /* ms/s */ * 60 /* s/min */ * 60 /* min/hr */ *
6 /* hrs */;
/** The set of conditions to load tasks. */
public static class Options {