Fixed voice call not working right after boot up

Telephony has two pipeline to load ICCID from the SIM. The pipeline
from UiccController receives the ICCID much earlier than the SIM
records in the phone stack, which caused the race condition when
telecom account registry is building the phone accounts.

Fixed by removing the ICCID check because after ag/17240597 we are
using subscription id to create the phone account.

Also renamed the misleading PhoneAccountUtils method names.

Fix: 268399273
Test: Make sure voice call is working right after boot up.
Change-Id: I1bbf40671be10365da30131a8c0de11d076d09ff
diff --git a/src/com/android/phone/PhoneUtils.java b/src/com/android/phone/PhoneUtils.java
index 5f14387..4826d2b 100644
--- a/src/com/android/phone/PhoneUtils.java
+++ b/src/com/android/phone/PhoneUtils.java
@@ -713,11 +713,11 @@
         // an emergency-only account
         String id = isEmergency ? EMERGENCY_ACCOUNT_HANDLE_ID : prefix +
                 String.valueOf(phone.getSubId());
-        return makePstnPhoneAccountHandleWithPrefix(id, prefix, isEmergency, userHandle);
+        return makePstnPhoneAccountHandleWithId(id, userHandle);
     }
 
-    public static PhoneAccountHandle makePstnPhoneAccountHandleWithPrefix(
-            String id, String prefix, boolean isEmergency, UserHandle userHandle) {
+    public static PhoneAccountHandle makePstnPhoneAccountHandleWithId(
+            String id, UserHandle userHandle) {
         ComponentName pstnConnectionServiceName = getPstnConnectionServiceName();
         // If user handle is null, resort to default constructor to use phone process's
         // user handle