Merge "Add GAL search support to Dialer"
diff --git a/src/com/android/contacts/common/list/ContactEntry.java b/src/com/android/contacts/common/list/ContactEntry.java
index 5f79e0e..bd673fc 100644
--- a/src/com/android/contacts/common/list/ContactEntry.java
+++ b/src/com/android/contacts/common/list/ContactEntry.java
@@ -23,7 +23,7 @@
/**
* Class to hold contact information
*/
-public class ContactEntry implements Comparable<ContactEntry> {
+public class ContactEntry {
public String name;
public String status;
public String phoneLabel;
@@ -35,12 +35,4 @@
public int pinned = PinnedPositions.UNPINNED;
public static final ContactEntry BLANK_ENTRY = new ContactEntry();
-
- /*
- * This is implemented to allow sorting pinned contacts within the Dialer
- */
- @Override
- public int compareTo(ContactEntry another) {
- return this.pinned - another.pinned;
- }
}
\ No newline at end of file