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

Commit 8ac87186 authored by Steven Moreland's avatar Steven Moreland Committed by android-build-merger
Browse files

Merge "Revert "Use get instead of implicit cast on Return<*>."" am: 5329acb6 am: e78c2b96

am: 9c3a926a

Change-Id: I77d33a5d2363670ff9b6b96a281aee8f967f648f
parents 53298287 9c3a926a
Loading
Loading
Loading
Loading
+1 −10
Original line number Diff line number Diff line
@@ -112,16 +112,7 @@ Return<void> Foo::callMe(
                  << DELAY_S
                  << " seconds";
        c[1] = systemTime();
        Return<bool> ret = cb->heyItsYouIsntIt(cb);
        if (!ret.isOk()) {
            LOG(ERROR) << "SERVER(Foo) callMe "
                      << cb.get()
                      << " encountered transport error ("
                      << ret.getStatus().exceptionCode()
                      << ").";
            return Void();
        }
        bool answer = ret.get();
        bool answer = cb->heyItsYouIsntIt(cb);
        c[1] = systemTime() - c[1];

        LOG(INFO) << "SERVER(Foo) callMe "