Remove READ_PRIVILEGED_PHONE_STATE for checking carrier privilege

Same call as TM#hasCarrierPrivilege, which doesn't check for the
permission. Fix was either to add to permission for both or remove it
for both, but it doesn't seem necessary if it's just checking whether
the current app has permissions or not.

Test: atest TelephonyManagerTest
Bug: 171982472
Change-Id: I3663c028e3757cc78d820bc1568c1854127d3e34
diff --git a/src/com/android/phone/PhoneInterfaceManager.java b/src/com/android/phone/PhoneInterfaceManager.java
index 63def4e..558ac05 100755
--- a/src/com/android/phone/PhoneInterfaceManager.java
+++ b/src/com/android/phone/PhoneInterfaceManager.java
@@ -6720,7 +6720,7 @@
 
     @Override
     public int checkCarrierPrivilegesForPackageAnyPhone(String pkgName) {
-        enforceReadPrivilegedPermission("checkCarrierPrivilegesForPackageAnyPhone");
+        // TODO(b/186774706): Remove @RequiresPermission from TelephonyManager API
         if (TextUtils.isEmpty(pkgName))
             return TelephonyManager.CARRIER_PRIVILEGE_STATUS_NO_ACCESS;
         int result = TelephonyManager.CARRIER_PRIVILEGE_STATUS_RULES_NOT_LOADED;