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

Commit c6a28994 authored by Steven Moreland's avatar Steven Moreland Committed by Automerger Merge Worker
Browse files

Merge "libbinder: BBinder descriptor" am: 02f87ae0 am: 0885db17 am:...

Merge "libbinder: BBinder descriptor" am: 02f87ae0 am: 0885db17 am: fd4f3bb1 am: c92fd01b am: 49743e3a

Original change: https://android-review.googlesource.com/c/platform/frameworks/native/+/2189957



Change-Id: I48ca4f6f952a473eb0703c9ff3dffa1481f1f870
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents 4e6f0de7 49743e3a
Loading
Loading
Loading
Loading
+3 −5
Original line number Diff line number Diff line
@@ -283,11 +283,9 @@ status_t BBinder::pingBinder()

const String16& BBinder::getInterfaceDescriptor() const
{
    // This is a local static rather than a global static,
    // to avoid static initializer ordering issues.
    static String16 sEmptyDescriptor;
    ALOGW("reached BBinder::getInterfaceDescriptor (this=%p)", this);
    return sEmptyDescriptor;
    static StaticString16 sBBinder(u"BBinder");
    ALOGW("Reached BBinder::getInterfaceDescriptor (this=%p). Override?", this);
    return sBBinder;
}

// NOLINTNEXTLINE(google-default-arguments)