diff options
| -rw-r--r-- | libs/binder/aidl/android/os/IServiceManager.aidl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/binder/aidl/android/os/IServiceManager.aidl b/libs/binder/aidl/android/os/IServiceManager.aidl index 8c7ebbaf36..b965881e7f 100644 --- a/libs/binder/aidl/android/os/IServiceManager.aidl +++ b/libs/binder/aidl/android/os/IServiceManager.aidl @@ -58,7 +58,7 @@ interface IServiceManager { * Returns null if the service does not exist. */ @UnsupportedAppUsage - IBinder getService(@utf8InCpp String name); + @nullable IBinder getService(@utf8InCpp String name); /** * Retrieve an existing service called @a name from the service @@ -66,7 +66,7 @@ interface IServiceManager { * exist. */ @UnsupportedAppUsage - IBinder checkService(@utf8InCpp String name); + @nullable IBinder checkService(@utf8InCpp String name); /** * Place a new @a service called @a name into the service |