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

Commit a6eed633 authored by Hall Liu's avatar Hall Liu Committed by android-build-merger
Browse files

Merge "Stop silently dropping a NullPointerException" am: d99ca078 am: 66c4dc07

am: 55bc95f8

Change-Id: Id4b7b3ee8329f1e6ed6e60be75c47fcec52f72c4
parents 29048b39 55bc95f8
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -8393,9 +8393,8 @@ public class TelephonyManager {
            ITelephony telephony = getITelephony();
            if (telephony != null)
                retVal = telephony.isUserDataEnabled(subId);
        } catch (RemoteException e) {
        } catch (RemoteException | NullPointerException e) {
            Log.e(TAG, "Error calling ITelephony#isUserDataEnabled", e);
        } catch (NullPointerException e) {
        }
        return retVal;
    }