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

Commit 68d8e946 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Add nullability annotations."

parents 65c6cd86 da79fb60
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -41397,7 +41397,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();
    }