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

Commit d35708cc authored by Ned Burns's avatar Ned Burns
Browse files

Privatize remaining protected members in NEM

Possible now that ArcNEM is deleted.

Test: atest
Change-Id: Ie0d5eeb127705eb377bd7e96d268b4ccd369438d
parent 266d408d
Loading
Loading
Loading
Loading
+5 −11
Original line number Diff line number Diff line
@@ -62,9 +62,10 @@ public class NotificationEntryManager implements
        NotificationUpdateHandler,
        VisualStabilityManager.Callback {
    private static final String TAG = "NotificationEntryMgr";
    protected static final boolean DEBUG = Log.isLoggable(TAG, Log.DEBUG);
    private static final boolean DEBUG = Log.isLoggable(TAG, Log.DEBUG);

    protected final Context mContext;
    private final Context mContext;
    @VisibleForTesting
    protected final HashMap<String, NotificationEntry> mPendingNotifications = new HashMap<>();

    private final DeviceProvisionedController mDeviceProvisionedController =
@@ -78,8 +79,9 @@ public class NotificationEntryManager implements

    private NotificationPresenter mPresenter;
    private NotificationListenerService.RankingMap mLatestRankingMap;
    @VisibleForTesting
    protected NotificationData mNotificationData;
    protected NotificationListContainer mListContainer;
    private NotificationListContainer mListContainer;
    @VisibleForTesting
    final ArrayList<NotificationLifetimeExtender> mNotificationLifetimeExtenders
            = new ArrayList<>();
@@ -171,14 +173,6 @@ public class NotificationEntryManager implements
        return mNotificationData;
    }

    protected Context getContext() {
        return mContext;
    }

    protected NotificationPresenter getPresenter() {
        return mPresenter;
    }

    @Override
    public void onReorderingAllowed() {
        updateNotifications();