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

Commit 5af6efd9 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Privatize remaining protected members in NEM"

parents 44b93686 d35708cc
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();