mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-08 05:24:39 +01:00
cleanup: remove unneeded imports (from one old file)
This commit is contained in:
parent
dc92007811
commit
bd08b0cfee
1 changed files with 1 additions and 6 deletions
|
@ -20,13 +20,9 @@
|
||||||
|
|
||||||
package org.eehouse.android.xw4;
|
package org.eehouse.android.xw4;
|
||||||
|
|
||||||
import android.app.AlarmManager;
|
|
||||||
import android.app.PendingIntent;
|
|
||||||
import android.content.BroadcastReceiver;
|
import android.content.BroadcastReceiver;
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
import android.content.Intent;
|
import android.content.Intent;
|
||||||
import android.os.SystemClock;
|
|
||||||
import android.widget.Toast;
|
|
||||||
|
|
||||||
public class OnBootReceiver extends BroadcastReceiver {
|
public class OnBootReceiver extends BroadcastReceiver {
|
||||||
|
|
||||||
|
@ -35,7 +31,7 @@ public class OnBootReceiver extends BroadcastReceiver {
|
||||||
{
|
{
|
||||||
if ( null != intent && null != intent.getAction()
|
if ( null != intent && null != intent.getAction()
|
||||||
&& intent.getAction().equals( Intent.ACTION_BOOT_COMPLETED ) ) {
|
&& intent.getAction().equals( Intent.ACTION_BOOT_COMPLETED ) ) {
|
||||||
DbgUtils.logf("OnBootReceiver: got ACTION_BOOT_COMPLETED");
|
DbgUtils.logf( "OnBootReceiver: got ACTION_BOOT_COMPLETED" );
|
||||||
startTimers( context );
|
startTimers( context );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -45,5 +41,4 @@ public class OnBootReceiver extends BroadcastReceiver {
|
||||||
NagTurnReceiver.restartTimer( context );
|
NagTurnReceiver.restartTimer( context );
|
||||||
RelayReceiver.setTimer( context );
|
RelayReceiver.setTimer( context );
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue