From ec81f124e9de9286efce2a93db9bc977e0f56e1c Mon Sep 17 00:00:00 2001 From: AdrianLxM Date: Wed, 8 Nov 2017 18:53:33 +0100 Subject: [PATCH] remove already commented out code --- .../plugins/Overview/notifications/NotificationStore.java | 6 ------ 1 file changed, 6 deletions(-) diff --git a/app/src/main/java/info/nightscout/androidaps/plugins/Overview/notifications/NotificationStore.java b/app/src/main/java/info/nightscout/androidaps/plugins/Overview/notifications/NotificationStore.java index 984ec45cea..18c97bc409 100644 --- a/app/src/main/java/info/nightscout/androidaps/plugins/Overview/notifications/NotificationStore.java +++ b/app/src/main/java/info/nightscout/androidaps/plugins/Overview/notifications/NotificationStore.java @@ -65,12 +65,6 @@ public class NotificationStore { alarm.putExtra("soundid", n.soundId); 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());