summaryrefslogtreecommitdiffstats
path: root/src/com/android/bluetooth
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/bluetooth')
-rwxr-xr-xsrc/com/android/bluetooth/hfp/AtPhonebook.java1
-rw-r--r--src/com/android/bluetooth/hfpclient/HeadsetClientStateMachine.java4
2 files changed, 0 insertions, 5 deletions
diff --git a/src/com/android/bluetooth/hfp/AtPhonebook.java b/src/com/android/bluetooth/hfp/AtPhonebook.java
index 32976d0c4..868733a35 100755
--- a/src/com/android/bluetooth/hfp/AtPhonebook.java
+++ b/src/com/android/bluetooth/hfp/AtPhonebook.java
@@ -577,7 +577,6 @@ public class AtPhonebook {
record = "+CPBR: " + index + ",\"" + number + "\"," + regionType + ",\"" + name + "\"";
record = record + "\r\n\r\n";
atCommandResponse = record;
- log("processCpbrCommand - atCommandResponse = "+atCommandResponse);
mStateMachine.atResponseStringNative(atCommandResponse, getByteAddress(device));
if (!pbr.cursor.moveToNext()) {
break;
diff --git a/src/com/android/bluetooth/hfpclient/HeadsetClientStateMachine.java b/src/com/android/bluetooth/hfpclient/HeadsetClientStateMachine.java
index 6bacd3b45..7ff8fcf52 100644
--- a/src/com/android/bluetooth/hfpclient/HeadsetClientStateMachine.java
+++ b/src/com/android/bluetooth/hfpclient/HeadsetClientStateMachine.java
@@ -770,8 +770,6 @@ final class HeadsetClientStateMachine extends StateMachine {
}
private void updateClip(String number) {
- Log.d(TAG, "updateClip number: " + number);
-
BluetoothHeadsetClientCall c = getCall(BluetoothHeadsetClientCall.CALL_STATE_INCOMING);
if (c == null) {
@@ -791,8 +789,6 @@ final class HeadsetClientStateMachine extends StateMachine {
}
private void addCallWaiting(String number) {
- Log.d(TAG, "addCallWaiting number: " + number);
-
if (getCall(BluetoothHeadsetClientCall.CALL_STATE_WAITING) == null) {
addCall(BluetoothHeadsetClientCall.CALL_STATE_WAITING, number);
}