]> iEval git - fonbot.git/blobdiff - src/ro/ieval/fonbot/GCMIntentService.java
Set target to android 18
[fonbot.git] / src / ro / ieval / fonbot / GCMIntentService.java
index de3820874242db746df6a281c2a2079e550997e0..84a3c7903268c8656f3790dd406db5712000260f 100644 (file)
@@ -4,9 +4,6 @@ import org.eclipse.jdt.annotation.Nullable;
 
 import android.content.Context;
 import android.content.Intent;
-import android.os.Handler;
-import android.os.Looper;
-
 import com.google.android.gcm.GCMBaseIntentService;
 
 /*
@@ -34,9 +31,6 @@ import com.google.android.gcm.GCMBaseIntentService;
  * @author Marius Gavrilescu <marius@ieval.ro>
  */
 public class GCMIntentService extends GCMBaseIntentService {
-       /** Handler instance */
-       private final Handler handler=new Handler(Looper.getMainLooper());
-
        /**
         * Constructs a GCMIntentService with the iEval sender id
         */
@@ -51,17 +45,15 @@ public class GCMIntentService extends GCMBaseIntentService {
 
        @Override
        protected void onMessage(@Nullable final Context context, @Nullable final Intent intent) {
-               handler.post(new Runnable(){
-                       @Override
-                       public void run() {
-                               new PollServerAsyncTask().execute();    
-                       }
-               });
+               if(context==null)
+                       return;
+
+               Utils.pollServer(context);
        }
 
        @Override
        protected void onRegistered(@Nullable final Context context, @Nullable final String regID) {
-               FonBotApplication.instance.regID=regID;
+               //do nothing
        }
 
        @Override
This page took 0.026792 seconds and 4 git commands to generate.