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

Commit 02f87ae0 authored by Steven Moreland's avatar Steven Moreland Committed by Gerrit Code Review
Browse files

Merge "libbinder: BBinder descriptor"

parents cec0fc3e 1ef0eb66
Loading
Loading
Loading
Loading
+3 −5
Original line number Original line Diff line number Diff line
@@ -283,11 +283,9 @@ status_t BBinder::pingBinder()


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


// NOLINTNEXTLINE(google-default-arguments)
// NOLINTNEXTLINE(google-default-arguments)