summaryrefslogtreecommitdiffstats
path: root/java/com/android/incallui/CallerInfoAsyncQuery.java
diff options
context:
space:
mode:
authorEric Erfanian <erfanian@google.com>2017-10-24 14:05:52 -0700
committerEric Erfanian <erfanian@google.com>2017-10-24 14:05:52 -0700
commit938468da6f5c225ebb161a68bd949c9cf3261892 (patch)
tree232533fa35dc9d140fdfe0dac82b2bd21ad1b5c4 /java/com/android/incallui/CallerInfoAsyncQuery.java
parent958b292fc04ad15879fff47df929d6d1a826615c (diff)
downloadandroid_packages_apps_Dialer-938468da6f5c225ebb161a68bd949c9cf3261892.tar.gz
android_packages_apps_Dialer-938468da6f5c225ebb161a68bd949c9cf3261892.tar.bz2
android_packages_apps_Dialer-938468da6f5c225ebb161a68bd949c9cf3261892.zip
Rename the new bubble package name from "bubble" to "newbubble".
It fixes AOSP for package name conflict. Test: manual PiperOrigin-RevId: 173298696 Change-Id: Id10ebe0bcf029e61f65cf6580c7198abd8395081
Diffstat (limited to 'java/com/android/incallui/CallerInfoAsyncQuery.java')
-rw-r--r--java/com/android/incallui/CallerInfoAsyncQuery.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/java/com/android/incallui/CallerInfoAsyncQuery.java b/java/com/android/incallui/CallerInfoAsyncQuery.java
index 8fc9c4f14..f9d8da819 100644
--- a/java/com/android/incallui/CallerInfoAsyncQuery.java
+++ b/java/com/android/incallui/CallerInfoAsyncQuery.java
@@ -103,7 +103,7 @@ public class CallerInfoAsyncQuery {
public void onQueryComplete(int token, Object cookie, CallerInfo ci) {
Log.d(LOG_TAG, "contactsProviderQueryCompleteListener onQueryComplete");
// If there are no other directory queries, make sure that the listener is
- // notified of this result. see b/27621628
+ // notified of this result. see a bug
if ((ci != null && ci.contactExists)
|| !startOtherDirectoriesQuery(token, context, info, listener, cookie)) {
if (listener != null && ci != null) {
@@ -206,7 +206,7 @@ public class CallerInfoAsyncQuery {
// The current implementation of multiple async query runs in single handler thread
// in AsyncQueryHandler.
// intermediateListener.onQueryComplete is also called from the same caller thread.
- // TODO(b/26019872): use thread pool instead of single thread.
+ // TODO(a bug): use thread pool instead of single thread.
for (int i = 0; i < size; i++) {
long directoryId = directoryIds[i];
Uri uri = ContactInfoHelper.getContactInfoLookupUri(info.phoneNumber, directoryId);