]> iEval git - fonbot.git/blobdiff - src/ro/ieval/fonbot/LocalBroadcastReceiver.java
Remove LocalBroadcastReceiver
[fonbot.git] / src / ro / ieval / fonbot / LocalBroadcastReceiver.java
diff --git a/src/ro/ieval/fonbot/LocalBroadcastReceiver.java b/src/ro/ieval/fonbot/LocalBroadcastReceiver.java
deleted file mode 100644 (file)
index 163310e..0000000
+++ /dev/null
@@ -1,49 +0,0 @@
-package ro.ieval.fonbot;
-
-import org.eclipse.jdt.annotation.Nullable;
-
-import android.content.BroadcastReceiver;
-import android.content.Context;
-import android.content.Intent;
-
-/*
- * Copyright © 2013 Marius Gavrilescu
- * 
- * This file is part of FonBot.
- *
- * FonBot is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * FonBot is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with FonBot.  If not, see <http://www.gnu.org/licenses/>. 
- */
-
-/**
- * BroadcastReceiver that receives appwide local broadcasts.
- *
- * @author Marius Gavrilescu <marius@ieval.ro>
- */
-public final class LocalBroadcastReceiver extends BroadcastReceiver {
-       /**
-        * Broadcast action: the poll alarm has fired, the app should poll the server
-        */
-       public static final String ACTION_POLL_ALARM="ro.ieval.fonbot.SystemEventReceiver.ACTION_POLL_ALARM";
-
-       @Override
-       public void onReceive(final @Nullable Context context, final @Nullable Intent intent) {
-               if(context==null || intent==null)
-                       return;
-
-               final String action=intent.getAction();
-               if(action.equals(LocalBroadcastReceiver.ACTION_POLL_ALARM))
-                       Utils.safePollServer(context);
-       }
-
-}
This page took 0.029184 seconds and 4 git commands to generate.