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

This commit is contained in:
Nathan Harold
2019-10-15 22:29:52 +00:00
committed by Gerrit Code Review

View File

@@ -5455,7 +5455,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());
@@ -5495,7 +5496,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) {