diff options
| author | 2017-08-30 17:44:46 +0000 | |
|---|---|---|
| committer | 2017-08-30 17:44:46 +0000 | |
| commit | a950087288c03b5fc2e895db31750dfb9c3cf4f8 (patch) | |
| tree | 69e4ce97b89407b26571e5fb839ad1a1ab73175c | |
| parent | 8cd22b7cfe8d6794c10260ba4df39fb705401469 (diff) | |
| parent | 9e4e96d3f7dc48d8f5608320a1c21f4145d7a800 (diff) | |
Merge "Fix typo in removeAccountExplicitly log message"
| -rw-r--r-- | services/core/java/com/android/server/accounts/AccountManagerService.java | 2 |
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); |