From fa8d545becf246b6f09d2fb6392d4cc25788346f Mon Sep 17 00:00:00 2001 From: Arne Schwabe Date: Thu, 16 Jan 2014 21:35:35 +0100 Subject: fix typo --HG-- extra : rebase_source : 57dcca25fdc7601edb4fc274d8fd918c6f4f21c1 --- src/de/blinkt/openvpn/OnBootReceiver.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/de/blinkt/openvpn/OnBootReceiver.java b/src/de/blinkt/openvpn/OnBootReceiver.java index 6777f9ca..32d14b1b 100644 --- a/src/de/blinkt/openvpn/OnBootReceiver.java +++ b/src/de/blinkt/openvpn/OnBootReceiver.java @@ -17,12 +17,12 @@ public class OnBootReceiver extends BroadcastReceiver { if(Intent.ACTION_BOOT_COMPLETED.equals(action)) { VpnProfile bootProfile = ProfileManager.getOnBootProfile(context); if(bootProfile != null) { - lauchVPN(bootProfile, context); + launchVPN(bootProfile, context); } } } - void lauchVPN(VpnProfile profile,Context context) { + void launchVPN(VpnProfile profile, Context context) { Intent startVpnIntent = new Intent(Intent.ACTION_MAIN); startVpnIntent.setClass(context, LaunchVPN.class); startVpnIntent.putExtra(LaunchVPN.EXTRA_KEY,profile.getUUIDString()); -- cgit v1.2.3