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

Commit 32d164ba authored by Nathan Harold's avatar Nathan Harold Committed by android-build-merger
Browse files

Merge "[DO NOT MERGE] Check CellInfoCallback Detail for Null"

am: 994f6563

Change-Id: I04af3edc7430db678bb1fb3f53d3f245d16f5f7d
parents fd5d074f 994f6563
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -5482,7 +5482,8 @@ public class TelephonyManager {
                        public void onError(int errorCode, android.os.ParcelableException detail) {
                            Binder.withCleanCallingIdentity(() ->
                                    executor.execute(() -> callback.onError(
                                            errorCode, detail.getCause())));
                                            errorCode,
                                            detail == null ? null : detail.getCause())));
                        }
                    }, getOpPackageName());

@@ -5522,7 +5523,8 @@ public class TelephonyManager {
                        public void onError(int errorCode, android.os.ParcelableException detail) {
                            Binder.withCleanCallingIdentity(() ->
                                    executor.execute(() -> callback.onError(
                                            errorCode, detail.getCause())));
                                            errorCode,
                                            detail == null ? null : detail.getCause())));
                        }
                    }, getOpPackageName(), workSource);
        } catch (RemoteException ex) {