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

Commit e78c2b96 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

Change-Id: I86a2469e37c515129e8b679e241800f44ccabc27
parents e50a914c 5329acb6
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 "