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

Commit 012aad2d authored by Harry Cutts's avatar Harry Cutts
Browse files

AbstractPreferenceController: mark context non-null

This propagates the changes made in change
I32ba2b6b8c05c1379b4d921350050979b1866805 one level further down.

Bug: 245989146
Test: m
Flag: EXEMPT unable to flag this kind of change
Change-Id: I40ab8241049cbdaf35ebad97fba15b86411cf01f
parent e7d5583e
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -37,10 +37,10 @@ public abstract class AbstractPreferenceController {

    private static final String TAG = "AbstractPrefController";

    protected final Context mContext;
    protected final @NonNull Context mContext;
    private final DevicePolicyManager mDevicePolicyManager;

    public AbstractPreferenceController(Context context) {
    public AbstractPreferenceController(@NonNull Context context) {
        mContext = context;
        mDevicePolicyManager =
                (DevicePolicyManager) mContext.getSystemService(Context.DEVICE_POLICY_SERVICE);