summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author TreeHugger Robot <treehugger-gerrit@google.com> 2017-08-30 17:44:46 +0000
committer Android (Google) Code Review <android-gerrit@google.com> 2017-08-30 17:44:46 +0000
commita950087288c03b5fc2e895db31750dfb9c3cf4f8 (patch)
tree69e4ce97b89407b26571e5fb839ad1a1ab73175c
parent8cd22b7cfe8d6794c10260ba4df39fb705401469 (diff)
parent9e4e96d3f7dc48d8f5608320a1c21f4145d7a800 (diff)
Merge "Fix typo in removeAccountExplicitly log message"
-rw-r--r--services/core/java/com/android/server/accounts/AccountManagerService.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/services/core/java/com/android/server/accounts/AccountManagerService.java b/services/core/java/com/android/server/accounts/AccountManagerService.java
index 7e90c9276ff0..8ae592f7978a 100644
--- a/services/core/java/com/android/server/accounts/AccountManagerService.java
+++ b/services/core/java/com/android/server/accounts/AccountManagerService.java
@@ -2191,7 +2191,7 @@ public class AccountManagerService
return false;
} else if (!isAccountManagedByCaller(account.type, callingUid, userId)) {
String msg = String.format(
- "uid %s cannot explicitly add accounts of type: %s",
+ "uid %s cannot explicitly remove accounts of type: %s",
callingUid,
account.type);
throw new SecurityException(msg);