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

Commit 271121fd authored by Scott Wiest's avatar Scott Wiest Committed by Automerger Merge Worker
Browse files

Merge "Checking for null proxy object before operating on a method of the...

Merge "Checking for null proxy object before operating on a method of the proxy object" into tm-qpr-dev am: 5a29df1b

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/20103048



Change-Id: Ibd1c9cede40e11042f6880bae05270597060f1a1
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents 9adace19 5a29df1b
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -272,6 +272,9 @@ public final class CameraExtensionCharacteristics {
                    @Override
                    public void onServiceConnected(ComponentName component, IBinder binder) {
                        mProxy = ICameraExtensionsProxyService.Stub.asInterface(binder);
                        if (mProxy == null) {
                            throw new IllegalStateException("Camera Proxy service is null");
                        }
                        try {
                            mSupportsAdvancedExtensions = mProxy.advancedExtensionsSupported();
                        } catch (RemoteException e) {