diff options
author | Matthew Xie <mattx@google.com> | 2013-10-10 21:56:19 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2013-10-10 21:56:20 +0000 |
commit | 0f86e5e8f227fba40a82dde935ee8d346080c64c (patch) | |
tree | d6800eb57d38ffe8736e1a5085011fb6789f7231 /framework/java/android/bluetooth/BluetoothInputDevice.java | |
parent | 04be95381fa074488fe6180675eafa7e23580960 (diff) | |
parent | 86418bac9b6f772f8998b78e1dad07cede88097b (diff) |
Merge "Check callback null condition for register/unregsiter state change callback" into klp-dev
Diffstat (limited to 'framework/java/android/bluetooth/BluetoothInputDevice.java')
-rw-r--r-- | framework/java/android/bluetooth/BluetoothInputDevice.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/java/android/bluetooth/BluetoothInputDevice.java b/framework/java/android/bluetooth/BluetoothInputDevice.java index f9c789c58a..844f432ca3 100644 --- a/framework/java/android/bluetooth/BluetoothInputDevice.java +++ b/framework/java/android/bluetooth/BluetoothInputDevice.java @@ -458,7 +458,7 @@ public final class BluetoothInputDevice implements BluetoothProfile { return BluetoothProfile.PRIORITY_OFF; } - private ServiceConnection mConnection = new ServiceConnection() { + private final ServiceConnection mConnection = new ServiceConnection() { public void onServiceConnected(ComponentName className, IBinder service) { if (DBG) Log.d(TAG, "Proxy object connected"); mService = IBluetoothInputDevice.Stub.asInterface(service); |