From 68535229fc934d464baeaf3a12d8a34ab0dbc60e Mon Sep 17 00:00:00 2001 From: Daniel Nishi Date: Wed, 1 Mar 2017 15:24:37 -0800 Subject: Persist the debug time correction flag. This simplifies the QA process significantly more than I originally expected. Bug: 34400961 Test: Manual Change-Id: I5d26526e7ea9a7f16a00b7c2281c5b460f6bbbff --- services/usage/java/com/android/server/usage/UsageStatsService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'services/usage/java') diff --git a/services/usage/java/com/android/server/usage/UsageStatsService.java b/services/usage/java/com/android/server/usage/UsageStatsService.java index ab988b2a50d8..3c7ee43f6200 100644 --- a/services/usage/java/com/android/server/usage/UsageStatsService.java +++ b/services/usage/java/com/android/server/usage/UsageStatsService.java @@ -98,7 +98,7 @@ public class UsageStatsService extends SystemService implements static final String TAG = "UsageStatsService"; public static final boolean ENABLE_TIME_CHANGE_CORRECTION - = SystemProperties.getBoolean("debug.time_change_correction", true); + = SystemProperties.getBoolean("persist.debug.time_correction", true); static final boolean DEBUG = false; // Never submit with true static final boolean COMPRESS_TIME = false; -- cgit v1.2.3-59-g8ed1b