Merge SendHttpMessageAsyncTask and PollServerAsyncTask
[fonbot.git] / src / ro / ieval / fonbot / GCMIntentService.java
index bf17e5ffa83076f3ebd346bc56884cf48bbfdce8..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
         */
@@ -54,12 +48,7 @@ public class GCMIntentService extends GCMBaseIntentService {
                if(context==null)
                        return;
 
-               handler.post(new Runnable(){
-                       @Override
-                       public void run() {
-                               new PollServerAsyncTask(context).execute();     
-                       }
-               });
+               Utils.pollServer(context);
        }
 
        @Override
This page took 0.009784 seconds and 4 git commands to generate.