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

Commit 9d9b74e0 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Guard against NPE in ServiceConnector" into rvc-dev am: 892d269b am: 163686b1

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

Change-Id: I404cfa16b540306c4bf5d036096476a5fe6c6845
parents 14d852ad 163686b1
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