summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAjay Panicker <apanicke@google.com>2015-10-22 23:37:40 +0000
committerandroid-build-merger <android-build-merger@google.com>2015-10-22 23:37:40 +0000
commitafe7ca2198226e7813b445e9401961b7fa9f1f7f (patch)
treeeea99dc5775db1822aefe722bc39390d2d74d329
parent3a7bd34e6024f7553c3f2999a215e2be20c94b91 (diff)
parentd83da25118e3b487df56f9e17f3c52bb60b25926 (diff)
downloadandroid_packages_apps_Bluetooth-afe7ca2198226e7813b445e9401961b7fa9f1f7f.tar.gz
android_packages_apps_Bluetooth-afe7ca2198226e7813b445e9401961b7fa9f1f7f.tar.bz2
android_packages_apps_Bluetooth-afe7ca2198226e7813b445e9401961b7fa9f1f7f.zip
Remove Vcard filter for call-logs am: b211df6fcb
am: d83da25118 * commit 'd83da25118e3b487df56f9e17f3c52bb60b25926': Remove Vcard filter for call-logs
-rw-r--r--src/com/android/bluetooth/pbap/BluetoothPbapVcardManager.java4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/com/android/bluetooth/pbap/BluetoothPbapVcardManager.java b/src/com/android/bluetooth/pbap/BluetoothPbapVcardManager.java
index de8275e72..748e7a598 100644
--- a/src/com/android/bluetooth/pbap/BluetoothPbapVcardManager.java
+++ b/src/com/android/bluetooth/pbap/BluetoothPbapVcardManager.java
@@ -623,7 +623,6 @@ public class BluetoothPbapVcardManager {
HandlerForStringBuffer buffer = null;
try {
- VCardFilter vcardfilter = new VCardFilter(ignorefilter ? null : filter);
composer = new BluetoothPbapCallLogComposer(mContext);
buffer = new HandlerForStringBuffer(op, ownerVCard);
if (!composer.init(CallLog.Calls.CONTENT_URI, selection, null, CALLLOG_SORT_ORDER)
@@ -638,9 +637,6 @@ public class BluetoothPbapVcardManager {
break;
}
String vcard = composer.createOneEntry(vcardType21);
- if (vcard != null) {
- vcard = vcardfilter.apply(vcard, vcardType21);
- }
if (vcard == null) {
Log.e(TAG,
"Failed to read a contact. Error reason: " + composer.getErrorReason());