Temporarily disable phone number formatting in search

Formatting the phone numbers after highlighting sequences had been
assigned was causing possible IndexOutOfBoundsExceptions when
applying the highlights. Temporarily disable formatting until
highlighting logic is better refactored between the various
PhoneNumberListAdapters and ContactListItemView.

Bug: 13906816
Change-Id: I9082a68ee7c2aaa376da203a98a534098bb43e14
diff --git a/src/com/android/contacts/common/list/ContactListItemView.java b/src/com/android/contacts/common/list/ContactListItemView.java
index 292e63a..b6aa800 100644
--- a/src/com/android/contacts/common/list/ContactListItemView.java
+++ b/src/com/android/contacts/common/list/ContactListItemView.java
@@ -1027,12 +1027,9 @@
         } else {
             getDataView();
 
-            if (countryIso != null) {
-                String formattedText = PhoneNumberUtils.formatNumber(text, countryIso);
-                if (formattedText != null) {
-                    text = formattedText;
-                }
-            }
+            // TODO: Format number using PhoneNumberUtils.formatNumber before assigning it to
+            // mDataView. Make sure that determination of the highlight sequences are done only
+            // after number formatting.
 
             // Sets phone number texts for display after highlighting it, if applicable.
             // CharSequence textToSet = text;