summaryrefslogtreecommitdiffstats
path: root/core/java/android/bluetooth
diff options
context:
space:
mode:
authorNick Pelly <npelly@google.com>2009-09-30 12:06:28 -0700
committerNick Pelly <npelly@google.com>2009-09-30 12:06:28 -0700
commite766eae93890b09db67d2c6a599c25fdae103f20 (patch)
tree3e7bf74920ee2e2dc8cf76381de41e498a49881d /core/java/android/bluetooth
parentf9bbe1e71a502fe7bd1f4a23ba5bbe4dde0d9d57 (diff)
downloadframeworks_base-e766eae93890b09db67d2c6a599c25fdae103f20.zip
frameworks_base-e766eae93890b09db67d2c6a599c25fdae103f20.tar.gz
frameworks_base-e766eae93890b09db67d2c6a599c25fdae103f20.tar.bz2
Fix broken build.
Should be bool not int. Forgot to roll in local changes to last commit. Change-Id: I28bad88238e5b715a5033b0d5a897d924ef8b538
Diffstat (limited to 'core/java/android/bluetooth')
-rw-r--r--core/java/android/bluetooth/BluetoothA2dp.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/java/android/bluetooth/BluetoothA2dp.java b/core/java/android/bluetooth/BluetoothA2dp.java
index a736ad1..7c4c9c1 100644
--- a/core/java/android/bluetooth/BluetoothA2dp.java
+++ b/core/java/android/bluetooth/BluetoothA2dp.java
@@ -140,7 +140,7 @@ public final class BluetoothA2dp {
* @return false on immediate error, true otherwise
* @hide
*/
- public int suspendSink(BluetoothDevice device) {
+ public boolean suspendSink(BluetoothDevice device) {
try {
return mService.suspendSink(device);
} catch (RemoteException e) {
@@ -156,7 +156,7 @@ public final class BluetoothA2dp {
* @return false on immediate error, true otherwise
* @hide
*/
- public int resumeSink(BluetoothDevice device) {
+ public boolean resumeSink(BluetoothDevice device) {
try {
return mService.resumeSink(device);
} catch (RemoteException e) {