android/Receiver: fix indent
This commit is contained in:
		| @@ -25,16 +25,18 @@ import android.content.Intent; | ||||
| import android.util.Log; | ||||
|  | ||||
| public class Receiver extends BroadcastReceiver { | ||||
|     @Override | ||||
|     public void onReceive(Context context, Intent intent) { | ||||
|         Log.d("Receiver", "onReceive: " + intent); | ||||
|         if (intent.getAction() == "android.intent.action.BOOT_COMPLETED") { | ||||
|         	if (Settings.Preferences.getBoolean(context, | ||||
|         			Settings.Preferences.KEY_RUN_ON_BOOT, false)) { | ||||
|         		final boolean wakelock = Settings.Preferences.getBoolean(context, | ||||
|         				Settings.Preferences.KEY_WAKELOCK, false); | ||||
|         		Main.start(context, wakelock); | ||||
|         	} | ||||
|         } | ||||
|     } | ||||
| 	@Override | ||||
| 	public void onReceive(Context context, Intent intent) { | ||||
| 		Log.d("Receiver", "onReceive: " + intent); | ||||
| 		if (intent.getAction() == "android.intent.action.BOOT_COMPLETED") { | ||||
| 			if (Settings.Preferences.getBoolean(context, | ||||
| 							    Settings.Preferences.KEY_RUN_ON_BOOT, | ||||
| 							    false)) { | ||||
| 				final boolean wakelock = | ||||
| 					Settings.Preferences.getBoolean(context, | ||||
| 									Settings.Preferences.KEY_WAKELOCK, false); | ||||
| 				Main.start(context, wakelock); | ||||
| 			} | ||||
| 		} | ||||
| 	} | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Max Kellermann
					Max Kellermann