diff options
author | Paul Soulos <psoulos@google.com> | 2014-06-26 16:38:00 -0700 |
---|---|---|
committer | Paul Soulos <psoulos@google.com> | 2014-06-26 16:38:27 -0700 |
commit | 47825f4d401aeb61e0945534f10e2c15e344b5d1 (patch) | |
tree | 55cba9804a18b3ff3d9f43c1a84d18451e2a5aa2 | |
parent | 8a80d19f88d224f1427d7656e361eb77e1f90974 (diff) |
Update method to match interface
Change-Id: Iec800ea42fbb608577ec48f71fc5ca9ceeba6608
-rw-r--r-- | src/com/android/dialer/interactions/PhoneNumberInteraction.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/android/dialer/interactions/PhoneNumberInteraction.java b/src/com/android/dialer/interactions/PhoneNumberInteraction.java index b494fffd5..5e028a9a5 100644 --- a/src/com/android/dialer/interactions/PhoneNumberInteraction.java +++ b/src/com/android/dialer/interactions/PhoneNumberInteraction.java @@ -122,7 +122,7 @@ public class PhoneNumberInteraction implements OnLoadCompleteListener<Cursor> { } @Override - public boolean shouldCollapseWith(PhoneItem phoneItem) { + public boolean shouldCollapseWith(PhoneItem phoneItem, Context context) { return MoreContactUtils.shouldCollapse(Phone.CONTENT_ITEM_TYPE, phoneNumber, Phone.CONTENT_ITEM_TYPE, phoneItem.phoneNumber); } |