Переглянути джерело

Empty method body for update() on windows

Sebastián Katzer 8 роки тому
батько
коміт
be56120d84
1 змінених файлів з 14 додано та 0 видалено
  1. 14 0
      src/windows/LocalNotificationProxy.js

+ 14 - 0
src/windows/LocalNotificationProxy.js

@@ -77,6 +77,20 @@ exports.schedule = function (success, error, args) {
     success();
 };
 
+/**
+ * Update notifications.
+ *
+ * @param [ Function ] success Success callback
+ * @param [ Function ] error   Error callback
+ * @param [ Array ]    args    Interface arguments
+ *
+ * @return [ Void ]
+ */
+exports.schedule = function (success, error, args) {
+    console.warn('LocalNotification#update is not implemented.');
+    success();
+};
+
 /**
  * Clear the notifications specified by id.
  *