summaryrefslogtreecommitdiff
path: root/java/com/android/incallui/CallerInfoAsyncQuery.java
diff options
context:
space:
mode:
authorTreehugger Robot <treehugger-gerrit@google.com>2017-10-24 22:41:00 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2017-10-24 22:41:00 +0000
commitdaa1c44c00f3c598223639c9b80a52cf41db51ba (patch)
treee4c88a1862b157dc858abe73e52b077bf7b96948 /java/com/android/incallui/CallerInfoAsyncQuery.java
parentef7338cf787301c573fde8129bf8880d7faba040 (diff)
parent938468da6f5c225ebb161a68bd949c9cf3261892 (diff)
Merge "Rename the new bubble package name from "bubble" to "newbubble"."
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);