Revert "Update InCallController to support work profiles."

Revert submission 20427263-telecomWorkProfileInCallController

Reason for revert: b/262487224 - Causes a regression initiating an emergency call from the lock screen.
Reverted changes: /q/submissionid:20427263-telecomWorkProfileInCallController

Change-Id: I19258266f1ca13e28c5eba3198f22070e2fdd29a
diff --git a/src/com/android/services/telephony/PstnIncomingCallNotifier.java b/src/com/android/services/telephony/PstnIncomingCallNotifier.java
index d58c211..f78a9b9 100644
--- a/src/com/android/services/telephony/PstnIncomingCallNotifier.java
+++ b/src/com/android/services/telephony/PstnIncomingCallNotifier.java
@@ -393,9 +393,8 @@
      */
     private PhoneAccountHandle findCorrectPhoneAccountHandle() {
         TelecomAccountRegistry telecomAccountRegistry = TelecomAccountRegistry.getInstance(null);
-        // Check to see if a SIM PhoneAccountHandle Exists for the Call.
-        PhoneAccountHandle handle = telecomAccountRegistry.getPhoneAccountHandleForSubId(
-                mPhone.getSubId());
+        // Check to see if a the SIM PhoneAccountHandle Exists for the Call.
+        PhoneAccountHandle handle = PhoneUtils.makePstnPhoneAccountHandle(mPhone);
         if (telecomAccountRegistry.hasAccountEntryForPhoneAccount(handle)) {
             return handle;
         }