summaryrefslogtreecommitdiff
path: root/InCallUI
diff options
context:
space:
mode:
authorTony Mak <tonymak@google.com>2016-05-06 12:06:25 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2016-05-06 12:06:30 +0000
commitddfb09b5af93c9adee0929ee405f3c8fd84282ca (patch)
tree506b2cb9c1353b58a6be6bf3e14531f65b4c6011 /InCallUI
parente5634164a0e89568cd79868e6bdcbc5610dc78ea (diff)
parentbf0e4f7cd8ee5793470ec4a21e917359e82a8cf8 (diff)
Merge "Fix enterprise contacts APIs naming and docs" into nyc-dev
Diffstat (limited to 'InCallUI')
-rw-r--r--InCallUI/src/com/android/incallui/CallerInfoAsyncQuery.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/InCallUI/src/com/android/incallui/CallerInfoAsyncQuery.java b/InCallUI/src/com/android/incallui/CallerInfoAsyncQuery.java
index 2839fbbf0..f7f0cbb5d 100644
--- a/InCallUI/src/com/android/incallui/CallerInfoAsyncQuery.java
+++ b/InCallUI/src/com/android/incallui/CallerInfoAsyncQuery.java
@@ -473,7 +473,7 @@ public class CallerInfoAsyncQuery {
int idIndex = cursor.getColumnIndex(Directory._ID);
while (cursor.moveToNext()) {
long id = cursor.getLong(idIndex);
- if (DirectoryCompat.isRemoteDirectory(id)) {
+ if (DirectoryCompat.isRemoteDirectoryId(id)) {
results.add(id);
}
}