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

Commit 2ae38f38 authored by Eugene Susla's avatar Eugene Susla
Browse files

Guard against NPE in ServiceConnector

Fixes: 157759109
Test: presubmit
Change-Id: Ic1f594e667af50c0df8e566be4efdbaab6dccb26
parent 40f7d483
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -709,7 +709,7 @@ public interface ServiceConnector<I extends IInterface> {
                if (DEBUG) {
                    return mDebugName;
                }
                return mDelegate.toString() + " wrapped into " + super.toString();
                return mDelegate + " wrapped into " + super.toString();
            }

            @Override