diff options
author | Mathew Inwood <mathewi@google.com> | 2018-08-16 18:49:37 +0100 |
---|---|---|
committer | Mathew Inwood <mathewi@google.com> | 2018-08-16 18:49:37 +0100 |
commit | 4dbdcf43ad0dfa91371ac06517317e0ea0b45b56 (patch) | |
tree | bf224c82a42e0228aae034faba6fae5f947394a7 /keystore/java/android/security/GateKeeper.java | |
parent | 43f3f60ec01a1d658cbff9386a7fbf8a839894b9 (diff) |
Add @UnsupportedAppUsage annotations
For packages:
android.security.net.config
android.security.keystore
android.security.keymaster
android.security
This is an automatically generated CL. See go/UnsupportedAppUsage
for more details.
Exempted-From-Owner-Approval: Mechanical changes to the codebase
which have been approved by Android API council and announced on
android-eng@
Bug: 110868826
Test: m
Change-Id: Ifed4da56531195f64fd53d84f14b4e8298843b2c
Merged-In: I7762dd647bede8abc9be2c538af3a3a99a25a73e
Diffstat (limited to 'keystore/java/android/security/GateKeeper.java')
-rw-r--r-- | keystore/java/android/security/GateKeeper.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/keystore/java/android/security/GateKeeper.java b/keystore/java/android/security/GateKeeper.java index 03df5de9b484..a50ff7984341 100644 --- a/keystore/java/android/security/GateKeeper.java +++ b/keystore/java/android/security/GateKeeper.java @@ -16,6 +16,7 @@ package android.security; +import android.annotation.UnsupportedAppUsage; import android.content.Context; import android.os.RemoteException; import android.os.ServiceManager; @@ -42,6 +43,7 @@ public abstract class GateKeeper { return service; } + @UnsupportedAppUsage public static long getSecureUserId() throws IllegalStateException { try { return getService().getSecureUserId(UserHandle.myUserId()); |