X-Git-Url: http://www.average.org/gitweb/?p=YkNeoCR.git;a=blobdiff_plain;f=src%2Forg%2Faverage%2Fnfcauthcr%2FAutostop.java;fp=src%2Forg%2Faverage%2Fnfcauthcr%2FAutostop.java;h=0000000000000000000000000000000000000000;hp=e845a42890adc343186ebaa47a1fe96089db0fc7;hb=08b05b67a65e78e80fb0fffec8855a69a72ebff9;hpb=9194bb54ed7bfd3ccb2ee93151fb3b1467cdae35 diff --git a/src/org/average/nfcauthcr/Autostop.java b/src/org/average/nfcauthcr/Autostop.java deleted file mode 100644 index e845a42..0000000 --- a/src/org/average/nfcauthcr/Autostop.java +++ /dev/null @@ -1,20 +0,0 @@ -package org.average.nfcauthcr; - -import android.content.BroadcastReceiver; -import android.content.Context; -import android.content.Intent; -import android.util.Log; - -import org.average.nfcauthcr.TagEvent; - -public class Autostop extends BroadcastReceiver { - - final String TAG = getClass().getName(); - - @Override - public void onReceive(Context context, Intent intent) { - Log.v(TAG, "Autostop called"); - Intent i = new Intent(context, TagEvent.class); - context.stopService(i); - } -}