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

Commit 17e3e829 authored by Adrian Roos's avatar Adrian Roos
Browse files

API: Suppress existing NullableCollections lints (S edition, die zweite)

Bug: 152525509
Test: make checkapi
Change-Id: Ia8cc585c6815c7b641ed3603862042eef70c369f
parent 09462b68
Loading
Loading
Loading
Loading
+3 −1
Original line number Original line Diff line number Diff line
@@ -18,6 +18,7 @@ package android.app.smartspace;


import android.annotation.NonNull;
import android.annotation.NonNull;
import android.annotation.Nullable;
import android.annotation.Nullable;
import android.annotation.SuppressLint;
import android.annotation.SystemApi;
import android.annotation.SystemApi;
import android.app.PendingIntent;
import android.app.PendingIntent;
import android.content.Intent;
import android.content.Intent;
@@ -171,6 +172,7 @@ public final class SmartspaceAction implements Parcelable {
    /**
    /**
     * Returns the extra bundle for this object.
     * Returns the extra bundle for this object.
     */
     */
    @SuppressLint("NullableCollection")
    public @Nullable Bundle getExtras() {
    public @Nullable Bundle getExtras() {
        return mExtras;
        return mExtras;
    }
    }
@@ -334,7 +336,7 @@ public final class SmartspaceAction implements Parcelable {
         * Sets the extra.
         * Sets the extra.
         */
         */
        @NonNull
        @NonNull
        public Builder setExtras(@Nullable Bundle extras) {
        public Builder setExtras(@SuppressLint("NullableCollection") @Nullable Bundle extras) {
            mExtras = extras;
            mExtras = extras;
            return this;
            return this;
        }
        }
+3 −1
Original line number Original line Diff line number Diff line
@@ -17,6 +17,7 @@ package android.app.smartspace;


import android.annotation.NonNull;
import android.annotation.NonNull;
import android.annotation.Nullable;
import android.annotation.Nullable;
import android.annotation.SuppressLint;
import android.annotation.SystemApi;
import android.annotation.SystemApi;
import android.content.Context;
import android.content.Context;
import android.os.Bundle;
import android.os.Bundle;
@@ -98,6 +99,7 @@ public final class SmartspaceConfig implements Parcelable {
    }
    }


    @Nullable
    @Nullable
    @SuppressLint("NullableCollection")
    public Bundle getExtras() {
    public Bundle getExtras() {
        return mExtras;
        return mExtras;
    }
    }
@@ -186,7 +188,7 @@ public final class SmartspaceConfig implements Parcelable {
         * Used to send a bundle containing extras for the {@link SmartspaceConfig}.
         * Used to send a bundle containing extras for the {@link SmartspaceConfig}.
         */
         */
        @NonNull
        @NonNull
        public Builder setExtras(@NonNull Bundle extras) {
        public Builder setExtras(@SuppressLint("NullableCollection") @NonNull Bundle extras) {
            this.mExtras = extras;
            this.mExtras = extras;
            return this;
            return this;
        }
        }