Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit da79fb60 authored by Makoto Onuki's avatar Makoto Onuki
Browse files

Add nullability annotations.

Change-Id: I33f7420d3e2c6e1ff1cb69edc84478b0a2153188
Fix: 126699241
Test: build
parent 89687068
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -41415,7 +41415,7 @@ package android.service.carrier {
  public class CarrierMessagingClientService extends android.app.Service {
    ctor public CarrierMessagingClientService();
    method public final android.os.IBinder onBind(android.content.Intent);
    method @NonNull public final android.os.IBinder onBind(@Nullable android.content.Intent);
  }
  public abstract class CarrierMessagingService extends android.app.Service {
+4 −1
Original line number Diff line number Diff line
@@ -15,6 +15,8 @@
 */
package android.service.carrier;

import android.annotation.NonNull;
import android.annotation.Nullable;
import android.app.Service;
import android.content.ComponentName;
import android.content.Intent;
@@ -71,7 +73,8 @@ public class CarrierMessagingClientService extends Service {
    }

    @Override
    public final IBinder onBind(Intent intent) {
    @NonNull
    public final IBinder onBind(@Nullable Intent intent) {
        return mImpl.asBinder();
    }