Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5eb7fd29 authored by Roshan Pius's avatar Roshan Pius Committed by Android Git Automerger
Browse files

am ff5c6fde: am 2ce65bdd: am cf01fd0f: Merge "Catch & log security exception...

am ff5c6fde: am 2ce65bdd: am cf01fd0f: Merge "Catch & log security exception in telephonymanager" into mnc-dev

* commit 'ff5c6fde':
  Catch & log security exception in telephonymanager
parents 274d3052 ff5c6fde
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
@@ -4230,7 +4230,7 @@ public class TelephonyManager {
        } catch (RemoteException e) {
            Log.e(TAG, "Error calling ITelephony#canChangeDtmfToneLength", e);
        } catch (SecurityException e) {
            Log.w(TAG, "Permission error calling ITelephony#canChangeDtmfToneLength", e);
            Log.e(TAG, "Permission error calling ITelephony#canChangeDtmfToneLength", e);
        }
        return false;
    }
@@ -4248,6 +4248,8 @@ public class TelephonyManager {
            }
        } catch (RemoteException e) {
            Log.e(TAG, "Error calling ITelephony#isWorldPhone", e);
        } catch (SecurityException e) {
            Log.e(TAG, "Permission error calling ITelephony#isWorldPhone", e);
        }
        return false;
    }
@@ -4265,6 +4267,8 @@ public class TelephonyManager {
            }
        } catch (RemoteException e) {
            Log.e(TAG, "Error calling ITelephony#isTtyModeSupported", e);
        } catch (SecurityException e) {
            Log.e(TAG, "Permission error calling ITelephony#isTtyModeSupported", e);
        }
        return false;
    }
@@ -4283,6 +4287,8 @@ public class TelephonyManager {
            }
        } catch (RemoteException e) {
            Log.e(TAG, "Error calling ITelephony#isHearingAidCompatibilitySupported", e);
        } catch (SecurityException e) {
            Log.e(TAG, "Permission error calling ITelephony#isHearingAidCompatibilitySupported", e);
        }
        return false;
    }