Remove notifications from nav drawer (#2319)

This commit is contained in:
Vivek Maskara 2019-01-30 15:21:29 +05:30 committed by neslihanturan
parent 4bbbfc839b
commit 1727a296c9
3 changed files with 0 additions and 20 deletions

View file

@ -142,11 +142,4 @@ public class NotificationActivity extends NavigationBaseActivity {
context.startActivity(intent);
}
private void initializeAndSetNotificationList(List<Notification> notificationList){
FragmentManager fm = getFragmentManager();
mNotificationWorkerFragment = new NotificationWorkerFragment();
fm.beginTransaction().add(mNotificationWorkerFragment, TAG_NOTIFICATION_WORKER_FRAGMENT)
.commit();
mNotificationWorkerFragment.setNotificationList(notificationList);
}
}