Commit 108ce95b authored by Max Kellermann's avatar Max Kellermann

android/Receiver: fix indent

parent 86e9ed5f
...@@ -25,16 +25,18 @@ import android.content.Intent; ...@@ -25,16 +25,18 @@ import android.content.Intent;
import android.util.Log; import android.util.Log;
public class Receiver extends BroadcastReceiver { public class Receiver extends BroadcastReceiver {
@Override @Override
public void onReceive(Context context, Intent intent) { public void onReceive(Context context, Intent intent) {
Log.d("Receiver", "onReceive: " + intent); Log.d("Receiver", "onReceive: " + intent);
if (intent.getAction() == "android.intent.action.BOOT_COMPLETED") { if (intent.getAction() == "android.intent.action.BOOT_COMPLETED") {
if (Settings.Preferences.getBoolean(context, if (Settings.Preferences.getBoolean(context,
Settings.Preferences.KEY_RUN_ON_BOOT, false)) { Settings.Preferences.KEY_RUN_ON_BOOT,
final boolean wakelock = Settings.Preferences.getBoolean(context, false)) {
Settings.Preferences.KEY_WAKELOCK, false); final boolean wakelock =
Main.start(context, wakelock); Settings.Preferences.getBoolean(context,
} Settings.Preferences.KEY_WAKELOCK, false);
} Main.start(context, wakelock);
} }
}
}
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment