Browse Source

Remove unused method

Sebastián Katzer 10 years ago
parent
commit
121ab4ac2a
1 changed files with 0 additions and 19 deletions
  1. 0 19
      src/ios/UIApplication+APPLocalNotification.m

+ 0 - 19
src/ios/UIApplication+APPLocalNotification.m

@@ -94,25 +94,6 @@
     return notifications;
 }
 
-/**
- * List of all local notifications which have been scheduled
- * and not yet removed from the notification center.
- */
-- (NSArray*) scheduledLocalNotifications2
-{
-    NSArray* scheduledNotifications = self.scheduledLocalNotifications;
-    NSMutableArray* notifications = [[NSMutableArray alloc] init];
-
-    for (UILocalNotification* notification in scheduledNotifications)
-    {
-        if (notification && [notification isScheduled]) {
-            [notifications addObject:notification];
-        }
-    }
-
-    return notifications;
-}
-
 /**
  * List of all triggered local notifications which have been scheduled
  * and not yet removed the notification center.