summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJay Shrauner <shrauner@google.com>2014-03-03 23:41:41 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2014-03-03 23:41:41 +0000
commita9d3960f4a555ff9c84eddf22904911d7d32d457 (patch)
treebc0b56d8468ab1e7f45079cf5a064da54221041a /src
parent5b8f013a34eee576cc3c12ced3843aaeea3a2ca6 (diff)
parent8ac2ff95dd68378f6f5c60e12fcb3552e5b9a7e1 (diff)
Merge "Fix synchronization in onNotNullableQueryComplete" into klp-dev
Diffstat (limited to 'src')
-rw-r--r--src/com/android/dialer/calllog/CallLogQueryHandler.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/android/dialer/calllog/CallLogQueryHandler.java b/src/com/android/dialer/calllog/CallLogQueryHandler.java
index def3c975b..39926767a 100644
--- a/src/com/android/dialer/calllog/CallLogQueryHandler.java
+++ b/src/com/android/dialer/calllog/CallLogQueryHandler.java
@@ -258,7 +258,7 @@ public class CallLogQueryHandler extends NoNullCursorAsyncQueryHandler {
}
@Override
- protected void onNotNullableQueryComplete(int token, Object cookie, Cursor cursor) {
+ protected synchronized void onNotNullableQueryComplete(int token, Object cookie, Cursor cursor) {
if (token == QUERY_CALLLOG_TOKEN) {
int requestId = ((Integer) cookie).intValue();
if (requestId != mCallsRequestId) {