Fix broken build.
Should be bool not int. Forgot to roll in local changes to last commit. Change-Id: I28bad88238e5b715a5033b0d5a897d924ef8b538
This commit is contained in:
committed by
android-build SharedAccount
parent
f92c106c40
commit
c926de31bc
@@ -140,7 +140,7 @@ public final class BluetoothA2dp {
|
|||||||
* @return false on immediate error, true otherwise
|
* @return false on immediate error, true otherwise
|
||||||
* @hide
|
* @hide
|
||||||
*/
|
*/
|
||||||
public int suspendSink(BluetoothDevice device) {
|
public boolean suspendSink(BluetoothDevice device) {
|
||||||
try {
|
try {
|
||||||
return mService.suspendSink(device);
|
return mService.suspendSink(device);
|
||||||
} catch (RemoteException e) {
|
} catch (RemoteException e) {
|
||||||
@@ -156,7 +156,7 @@ public final class BluetoothA2dp {
|
|||||||
* @return false on immediate error, true otherwise
|
* @return false on immediate error, true otherwise
|
||||||
* @hide
|
* @hide
|
||||||
*/
|
*/
|
||||||
public int resumeSink(BluetoothDevice device) {
|
public boolean resumeSink(BluetoothDevice device) {
|
||||||
try {
|
try {
|
||||||
return mService.resumeSink(device);
|
return mService.resumeSink(device);
|
||||||
} catch (RemoteException e) {
|
} catch (RemoteException e) {
|
||||||
|
|||||||
Reference in New Issue
Block a user