diff options
| author | 2020-03-29 15:07:23 +0100 | |
|---|---|---|
| committer | 2020-03-29 15:07:23 +0100 | |
| commit | 9a8bf9a7f9ac40ced660d04e5d9dccd2d1b0bb28 (patch) | |
| tree | 854bde47b36349292277c718863ebefe950c8a47 | |
| parent | 582cb38829f5f940a9d93fc4abbdf306f8efa009 (diff) | |
Remove the @hide from ContextImpl#bindServiceAsUser
The method is already public in Context, but the @hide wasn't removed
from the javadoc of the subclass.
Fixes: 150123286
Test: m -j
Change-Id: I53f999f99d2ad64f930beedb262affffbe13764f
| -rw-r--r-- | core/java/android/app/ContextImpl.java | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/core/java/android/app/ContextImpl.java b/core/java/android/app/ContextImpl.java index d8757c36374a..bb64c3492c4f 100644 --- a/core/java/android/app/ContextImpl.java +++ b/core/java/android/app/ContextImpl.java @@ -1763,7 +1763,6 @@ class ContextImpl extends Context { return bindServiceCommon(service, conn, flags, instanceName, null, executor, getUser()); } - /** @hide */ @Override public boolean bindServiceAsUser(Intent service, ServiceConnection conn, int flags, UserHandle user) { |