From 8a9f5d42a5cc373439ee8bbb9185dcce9086770d Mon Sep 17 00:00:00 2001 From: Dianne Hackborn Date: Mon, 10 Sep 2012 15:37:53 -0700 Subject: [PATCH] USER_CURRENT_OR_SELF had the same int as USER_CURRENT! Change-Id: I0f2b0fa4fb82d1f871450b509a7a4d13e9817320 --- core/java/android/os/UserHandle.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/java/android/os/UserHandle.java b/core/java/android/os/UserHandle.java index fff7d5f0ce8be..7e4666c0dad55 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