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

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

API Lint: Ignore existing CallbackMethodName violations

Bug: 149430296
Test: make checkapi
Change-Id: Ic6f634355c77f4236083065f7ca933fbee5534a6
Exempt-From-Owner-Approval: API Lint suppresion
parent 43361f71
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -28,6 +28,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.app.ActivityManager;
@@ -1622,11 +1623,13 @@ public class WifiManager {
         * @param wifiConfiguration WifiConfiguration object corresponding to the network
         *                          user selected.
         */
        @SuppressLint("CallbackMethodName")
        default void select(@NonNull WifiConfiguration wifiConfiguration) {}

        /**
         * User rejected the app's request.
         */
        @SuppressLint("CallbackMethodName")
        default void reject() {}
    }