From 42c98ada113ae5b7c72ecb6d0de721ec1d0d3534 Mon Sep 17 00:00:00 2001 From: Ying Wang Date: Mon, 4 Jan 2010 18:51:25 -0800 Subject: [PATCH] Still use ro.monkey http://b/issue?id=1681101 --- core/java/android/accounts/AccountManagerService.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/core/java/android/accounts/AccountManagerService.java b/core/java/android/accounts/AccountManagerService.java index e312ac1d6c19..440668f5b0e2 100644 --- a/core/java/android/accounts/AccountManagerService.java +++ b/core/java/android/accounts/AccountManagerService.java @@ -152,8 +152,7 @@ public class AccountManagerService new AtomicReference(); private static final boolean isDebuggableMonkeyBuild = - SystemProperties.getBoolean("monkey.running", false) - && SystemProperties.getBoolean("ro.debuggable", false); + SystemProperties.getBoolean("ro.monkey", false); private static final Account[] EMPTY_ACCOUNT_ARRAY = new Account[]{}; static { -- 2.11.0