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

Commit f3d9aa5e authored by Steven Moreland's avatar Steven Moreland
Browse files

Remove in-process transaction log.

This is used in production as a means to go between languages
(rust<->C++) in keystore.

Bug: N/A
Test: N/A
Change-Id: I562f7fd15d9b85e065074abf7b80e4d439432730
parent 6fc80d63
Loading
Loading
Loading
Loading
+0 −7
Original line number Diff line number Diff line
@@ -597,13 +597,6 @@ binder_status_t AIBinder_prepareTransaction(AIBinder* binder, AParcel** in) {
        return STATUS_INVALID_OPERATION;
    }

    if (!binder->isRemote()) {
        LOG(WARNING) << "A binder object at " << binder
                     << " is being transacted on, however, this object is in the same process as "
                        "its proxy. Transacting with this binder is expensive compared to just "
                        "calling the corresponding functionality in the same process.";
    }

    *in = new AParcel(binder);
    status_t status = (*in)->get()->writeInterfaceToken(clazz->getInterfaceDescriptor());
    binder_status_t ret = PruneStatusT(status);