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

Commit f706f1a8 authored by Treehugger Robot's avatar Treehugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Add additional exception handling in endpoint callback registration" into main

parents 88384179 dffb9c08
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -527,8 +527,8 @@ public class ContextHubService extends IContextHubService.Stub {
        try {
            mContextHubWrapper.registerEndpointCallback(
                    new ContextHubHalEndpointCallback(mHubInfoRegistry));
        } catch (RemoteException e) {
            Log.e(TAG, "RemoteException while registering IEndpointCallback", e);
        } catch (RemoteException | UnsupportedOperationException e) {
            Log.e(TAG, "Exception while registering IEndpointCallback", e);
        }
    }