Removing permission check
Bug: 381596158
Flag: EXEMPT bugfix
Test: atest SatelliteManagerTest#testRequestIsSatelliteSupported(http://ab/I29000010340885771-passed)
Change-Id: Ib39730038cc05a4baac5ea4d5b5759a894417ace
diff --git a/src/com/android/phone/PhoneInterfaceManager.java b/src/com/android/phone/PhoneInterfaceManager.java
index 495c7f2..c29d1b3 100644
--- a/src/com/android/phone/PhoneInterfaceManager.java
+++ b/src/com/android/phone/PhoneInterfaceManager.java
@@ -13321,12 +13321,9 @@
*
* @param result The result receiver that returns whether the satellite service is supported on
* the device if the request is successful or an error code if the request failed.
- *
- * @throws SecurityException if the caller doesn't have the required permission.
*/
@Override
public void requestIsSatelliteSupported(@NonNull ResultReceiver result) {
- enforceSatelliteCommunicationPermission("requestIsSatelliteSupported");
final long identity = Binder.clearCallingIdentity();
try {
mSatelliteController.requestIsSatelliteSupported(result);