diff options
| author | Dianne Hackborn <hackbod@google.com> | 2012-09-10 15:37:53 -0700 |
|---|---|---|
| committer | Dianne Hackborn <hackbod@google.com> | 2012-09-10 15:37:53 -0700 |
| commit | 8a9f5d42a5cc373439ee8bbb9185dcce9086770d (patch) | |
| tree | 1aca1ffc968fc3f9507fc644c0dc130fc0579ffe /core/java/android/os/UserHandle.java | |
| parent | 41bd89f6b61296492d3775e5ef30e94c5f18d34f (diff) | |
USER_CURRENT_OR_SELF had the same int as USER_CURRENT!
Change-Id: I0f2b0fa4fb82d1f871450b509a7a4d13e9817320
Diffstat (limited to 'core/java/android/os/UserHandle.java')
| -rw-r--r-- | core/java/android/os/UserHandle.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/os/UserHandle.java b/core/java/android/os/UserHandle.java index fff7d5f0ce8b..7e4666c0dad5 100644 --- a/core/java/android/os/UserHandle.java +++ b/core/java/android/os/UserHandle.java @@ -40,7 +40,7 @@ public final class UserHandle implements Parcelable { /** @hide A user id to indicate that we would like to send to the current * user, but if this is calling from a user process then we will send it * to the caller's user instead of failing wiht a security exception */ - public static final int USER_CURRENT_OR_SELF = -2; + public static final int USER_CURRENT_OR_SELF = -3; /** @hide A user handle to indicate that we would like to send to the current * user, but if this is calling from a user process then we will send it |
