summaryrefslogtreecommitdiff
path: root/services/java
diff options
context:
space:
mode:
author Neil Fuller <nfuller@google.com> 2020-02-28 17:36:16 +0000
committer Neil Fuller <nfuller@google.com> 2020-02-28 17:36:16 +0000
commita7f7d8876606d0c1a42270665e895d41ceca5bf8 (patch)
treec9b635abf5d32cb93209f9246037bbf2d902cacd /services/java
parent97c24fb16722d4e42743c10760144c64f67be291 (diff)
Remove two unused constants
EARLIEST_SUPPORTED_TIME should have been removed in commit 4b03c07cc7. To attone, this commit removes a constant that stopped being used in P. Test: treehugger Change-Id: Ibd687e54c3c86ba16656d45d73d48eb4f33ec0ea
Diffstat (limited to 'services/java')
-rw-r--r--services/java/com/android/server/SystemServer.java6
1 files changed, 0 insertions, 6 deletions
diff --git a/services/java/com/android/server/SystemServer.java b/services/java/com/android/server/SystemServer.java
index b93365ad0ad5..9bbb490bc188 100644
--- a/services/java/com/android/server/SystemServer.java
+++ b/services/java/com/android/server/SystemServer.java
@@ -190,12 +190,6 @@ public final class SystemServer {
private static final String ENCRYPTING_STATE = "trigger_restart_min_framework";
private static final String ENCRYPTED_STATE = "1";
- private static final long SNAPSHOT_INTERVAL = 60 * 60 * 1000; // 1hr
-
- // The earliest supported time. We pick one day into 1970, to
- // give any timezone code room without going into negative time.
- private static final long EARLIEST_SUPPORTED_TIME = 86400 * 1000;
-
private static final long SLOW_DISPATCH_THRESHOLD_MS = 100;
private static final long SLOW_DELIVERY_THRESHOLD_MS = 200;