diff --git a/src/com/android/settings/TetherSettings.java b/src/com/android/settings/TetherSettings.java index e6d35965b84..368973ca829 100644 --- a/src/com/android/settings/TetherSettings.java +++ b/src/com/android/settings/TetherSettings.java @@ -49,14 +49,13 @@ import android.webkit.WebView; import java.io.InputStream; import java.util.ArrayList; import java.util.Locale; -import android.util.Log; + /* * Displays preferences for Tethering. */ public class TetherSettings extends SettingsPreferenceFragment implements DialogInterface.OnClickListener, Preference.OnPreferenceChangeListener { private static final String TAG = "TetherSettings"; - private static final boolean DBG = false; private static final String USB_TETHER_SETTINGS = "usb_tether_settings"; private static final String ENABLE_WIFI_AP = "enable_wifi_ap"; diff --git a/src/com/android/settings/bluetooth/A2dpProfile.java b/src/com/android/settings/bluetooth/A2dpProfile.java index e7fd6c03e12..1f0ddc081f1 100755 --- a/src/com/android/settings/bluetooth/A2dpProfile.java +++ b/src/com/android/settings/bluetooth/A2dpProfile.java @@ -196,7 +196,8 @@ final class A2dpProfile implements LocalBluetoothProfile { if (V) Log.d(TAG, "finalize()"); if (mService != null) { try { - BluetoothAdapter.getDefaultAdapter().closeProfileProxy(BluetoothProfile.A2DP, mService); + BluetoothAdapter.getDefaultAdapter().closeProfileProxy(BluetoothProfile.A2DP, + mService); mService = null; }catch (Throwable t) { Log.w(TAG, "Error cleaning up A2DP proxy", t); diff --git a/src/com/android/settings/bluetooth/BluetoothDiscoverableEnabler.java b/src/com/android/settings/bluetooth/BluetoothDiscoverableEnabler.java index 80ce8e2a564..d687136e15d 100755 --- a/src/com/android/settings/bluetooth/BluetoothDiscoverableEnabler.java +++ b/src/com/android/settings/bluetooth/BluetoothDiscoverableEnabler.java @@ -141,7 +141,7 @@ final class BluetoothDiscoverableEnabler implements Preference.OnPreferenceClick Log.d(TAG, "setEnabled(): enabled = " + enable + "timeout = " + timeout); - if (0 < timeout) { + if (timeout > 0) { BluetoothDiscoverableTimeoutReceiver.setDiscoverableAlarm(mContext, endTimestamp); } } else { diff --git a/src/com/android/settings/bluetooth/BluetoothDiscoverableTimeoutReceiver.java b/src/com/android/settings/bluetooth/BluetoothDiscoverableTimeoutReceiver.java index 3ea9d9ed3f9..14f7b22acc5 100644 --- a/src/com/android/settings/bluetooth/BluetoothDiscoverableTimeoutReceiver.java +++ b/src/com/android/settings/bluetooth/BluetoothDiscoverableTimeoutReceiver.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008 The Android Open Source Project + * Copyright (C) 2012 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -16,21 +16,23 @@ package com.android.settings.bluetooth; -import android.content.BroadcastReceiver; -import android.content.ContentResolver; -import android.content.Context; -import android.content.Intent; -import android.bluetooth.BluetoothAdapter; -import android.util.Log; - /* Required to handle timeout notification when phone is suspended */ import android.app.AlarmManager; import android.app.PendingIntent; +import android.bluetooth.BluetoothAdapter; +import android.content.BroadcastReceiver; +import android.content.ContentResolver; +import android.content.Context; +import android.content.Intent; +import android.util.Log; + + public class BluetoothDiscoverableTimeoutReceiver extends BroadcastReceiver { private static final String TAG = "BluetoothDiscoverableTimeoutReceiver"; - private static final String INTENT_DISCOVERABLE_TIMEOUT = "android.bluetooth.intent.DISCOVERABLE_TIMEOUT"; + private static final String INTENT_DISCOVERABLE_TIMEOUT = + "android.bluetooth.intent.DISCOVERABLE_TIMEOUT"; static void setDiscoverableAlarm(Context context, long alarmTime) { Log.d(TAG, "setDiscoverableAlarm(): alarmTime = " + alarmTime); @@ -73,7 +75,8 @@ public class BluetoothDiscoverableTimeoutReceiver extends BroadcastReceiver { public void onReceive(Context context, Intent intent) { LocalBluetoothAdapter localBluetoothAdapter = LocalBluetoothAdapter.getInstance(); - if(null != localBluetoothAdapter && localBluetoothAdapter.getState() == BluetoothAdapter.STATE_ON) { + if(localBluetoothAdapter != null && + localBluetoothAdapter.getState() == BluetoothAdapter.STATE_ON) { Log.d(TAG, "Disable discoverable..."); localBluetoothAdapter.setScanMode(BluetoothAdapter.SCAN_MODE_CONNECTABLE); @@ -82,4 +85,3 @@ public class BluetoothDiscoverableTimeoutReceiver extends BroadcastReceiver { } } }; - diff --git a/src/com/android/settings/bluetooth/HeadsetProfile.java b/src/com/android/settings/bluetooth/HeadsetProfile.java index 18992e069ce..9e6254d8119 100755 --- a/src/com/android/settings/bluetooth/HeadsetProfile.java +++ b/src/com/android/settings/bluetooth/HeadsetProfile.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2011 The Android Open Source Project + * Copyright (C) 2012 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -176,9 +176,9 @@ final class HeadsetProfile implements LocalBluetoothProfile { } -// This function is added as the AUTO CONNECT priority could not be set by using setPreferred(), -// as setPreferred() takes only boolean input but getPreferred() supports interger output. -// Also this need not implemented by all profiles so this has been added here. + // This function is added as the AUTO CONNECT priority could not be set by using setPreferred(), + // as setPreferred() takes only boolean input but getPreferred() supports interger output. + // Also this need not implemented by all profiles so this has been added here. public void enableAutoConnect(BluetoothDevice device, boolean enable) { if (mService == null) return; if (enable) { @@ -224,7 +224,8 @@ final class HeadsetProfile implements LocalBluetoothProfile { if (V) Log.d(TAG, "finalize()"); if (mService != null) { try { - BluetoothAdapter.getDefaultAdapter().closeProfileProxy(BluetoothProfile.HEADSET, mService); + BluetoothAdapter.getDefaultAdapter().closeProfileProxy(BluetoothProfile.HEADSET, + mService); mService = null; }catch (Throwable t) { Log.w(TAG, "Error cleaning up HID proxy", t); diff --git a/src/com/android/settings/bluetooth/HidProfile.java b/src/com/android/settings/bluetooth/HidProfile.java index c530fa61292..c502850ca2c 100644 --- a/src/com/android/settings/bluetooth/HidProfile.java +++ b/src/com/android/settings/bluetooth/HidProfile.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2011 The Android Open Source Project + * Copyright (C) 2012 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -168,7 +168,8 @@ final class HidProfile implements LocalBluetoothProfile { if (V) Log.d(TAG, "finalize()"); if (mService != null) { try { - BluetoothAdapter.getDefaultAdapter().closeProfileProxy(BluetoothProfile.INPUT_DEVICE, mService); + BluetoothAdapter.getDefaultAdapter().closeProfileProxy(BluetoothProfile.INPUT_DEVICE, + mService); mService = null; }catch (Throwable t) { Log.w(TAG, "Error cleaning up HID proxy", t);