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

Commit bc04e9c1 authored by Adrian Roos's avatar Adrian Roos
Browse files

Suppress existing CallbackMethodName lint

Bug: 149430296
Change-Id: I787437f0bcb2391064564036c22688132b7450a8
Merged-In: I17258fb333a9bee7eae8ad6488ffeb35dee72ac6
Exempt-From-Owner-Approval: Fixing API lint
parent eb3d6869
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -24,6 +24,7 @@ import android.annotation.Nullable;
import android.annotation.RequiresPermission;
import android.annotation.SdkConstant;
import android.annotation.SdkConstant.SdkConstantType;
import android.annotation.SuppressLint;
import android.annotation.SystemApi;
import android.annotation.SystemService;
import android.content.Context;
@@ -468,11 +469,13 @@ public class NetworkScoreManager {
         *
         * @param networks List of {@link ScoredNetwork} containing updated scores.
         */
        @SuppressLint("CallbackMethodName")
        void updateScores(@NonNull List<ScoredNetwork> networks);

        /**
         * Invokes when all the previously provided scores are no longer valid.
         */
        @SuppressLint("CallbackMethodName")
        void clearScores();
    }