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

Commit c4a98a65 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "libpdx: Remove redundant code"

parents 416fc5a9 fa1f420b
Loading
Loading
Loading
Loading
+1 −7
Original line number Diff line number Diff line
@@ -318,13 +318,7 @@ Status<void> Message::Reply(const RemoteHandle& handle) {
  PDX_TRACE_NAME("Message::ReplyFileHandle");
  auto svc = service_.lock();
  if (!replied_ && svc) {
    Status<void> ret;

    if (handle)
      ret = svc->endpoint()->MessageReply(this, handle.Get());
    else
      ret = svc->endpoint()->MessageReply(this, handle.Get());

    Status<void> ret = svc->endpoint()->MessageReply(this, handle.Get());
    replied_ = ret.ok();
    return ret;
  } else {