aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/kotlin/com/pitchedapps/frost/services/NotificationReceiver.kt
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/kotlin/com/pitchedapps/frost/services/NotificationReceiver.kt')
-rw-r--r--app/src/main/kotlin/com/pitchedapps/frost/services/NotificationReceiver.kt20
1 files changed, 0 insertions, 20 deletions
diff --git a/app/src/main/kotlin/com/pitchedapps/frost/services/NotificationReceiver.kt b/app/src/main/kotlin/com/pitchedapps/frost/services/NotificationReceiver.kt
deleted file mode 100644
index b37ca1f8..00000000
--- a/app/src/main/kotlin/com/pitchedapps/frost/services/NotificationReceiver.kt
+++ /dev/null
@@ -1,20 +0,0 @@
-package com.pitchedapps.frost.services
-
-import android.content.BroadcastReceiver
-import android.content.Context
-import android.content.Intent
-
-/**
- * Created by Allan Wang on 2017-05-31.
- */
-class NotificationReceiver : BroadcastReceiver() {
-
- companion object {
- const val ACTION = "com.pitchedapps.frost.NOTIFICATIONS"
- }
-
- override fun onReceive(context: Context, intent: Intent) {
- if (intent.action != ACTION) return
- }
-
-} \ No newline at end of file