remove already commented out code

This commit is contained in:
AdrianLxM 2017-11-08 18:53:33 +01:00
parent 4e53b4b1a4
commit ec81f124e9

View file

@ -65,12 +65,6 @@ public class NotificationStore {
alarm.putExtra("soundid", n.soundId); alarm.putExtra("soundid", n.soundId);
MainApp.instance().startService(alarm); MainApp.instance().startService(alarm);
} }
//Only pipe through to wear if no system notification is raised (should show on wear anyways)
/*WearPlugin wearPlugin = MainApp.getSpecificPlugin(WearPlugin.class);
if(wearPlugin!= null && wearPlugin.isEnabled()) {
wearPlugin.overviewNotification(n.id, "OverviewNotification:\n" + n.text);
}*/
} }
Collections.sort(store, new NotificationComparator()); Collections.sort(store, new NotificationComparator());