Don't auto format phone numbers when editor opens

The new behavior was introduced in ag/856515 to fix b/26754145

This causes contacts with phone numbers that do not have
the standard formatting to show as changed when the editor
is opened as then closed even when the user makes no edits.

Bug 26754145
Bug 27247065

Change-Id: I9ff8443844dd5d419df5c50e3664b382edbec045
diff --git a/src/com/android/contacts/editor/TextFieldsEditorView.java b/src/com/android/contacts/editor/TextFieldsEditorView.java
index 91b52d8..3086526 100644
--- a/src/com/android/contacts/editor/TextFieldsEditorView.java
+++ b/src/com/android/contacts/editor/TextFieldsEditorView.java
@@ -232,7 +232,7 @@
             fieldView.setInputType(inputType);
             if (inputType == InputType.TYPE_CLASS_PHONE) {
                 PhoneNumberFormatter.setPhoneNumberFormattingTextWatcher(
-                        getContext(), fieldView, /* formatAfterWatcherSet =*/ true);
+                        getContext(), fieldView, /* formatAfterWatcherSet =*/ false);
                 fieldView.setTextDirection(View.TEXT_DIRECTION_LTR);
             }
             fieldView.setTextAlignment(View.TEXT_ALIGNMENT_VIEW_START);