summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Jaikumar Ganesh <jaikumar@google.com> 2011-08-22 19:29:57 -0700
committer Android (Google) Code Review <android-gerrit@google.com> 2011-08-22 19:29:57 -0700
commit04c4301251b9feff743fa92f3b7290b8dc32ebd9 (patch)
tree5bdf6ee55a8db4d09e9491b48500a0d631601bc7
parente20c279d9a6719a7c0d8c6606c7ba1bd207db8d3 (diff)
parentef4f8f2c08d6f0d51251fd2ffd508747743de9fd (diff)
Merge "Fix sendConnection State intent api params."
-rw-r--r--core/java/android/server/BluetoothHealthProfileHandler.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/server/BluetoothHealthProfileHandler.java b/core/java/android/server/BluetoothHealthProfileHandler.java
index eafd7bd35a5d..51c995e7c4f4 100644
--- a/core/java/android/server/BluetoothHealthProfileHandler.java
+++ b/core/java/android/server/BluetoothHealthProfileHandler.java
@@ -569,7 +569,7 @@ final class BluetoothHealthProfileHandler {
int newDeviceState) {
mHealthDevices.put(device, newDeviceState);
mBluetoothService.sendConnectionStateChange(device, BluetoothProfile.HEALTH,
- prevDeviceState, newDeviceState);
+ newDeviceState, prevDeviceState);
}
/**