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

Commit bc13df8c authored by Brad Ebinger's avatar Brad Ebinger Committed by android-build-merger
Browse files

Merge "Add method that checks the Binder status of ImsConfig"

am: 6ffc855e

Change-Id: Ifa04b6260d51c17dc323fab918db0bdbf2bdea64
parents cfbd4a35 6ffc855e
Loading
Loading
Loading
Loading
+7 −0
Original line number Original line Diff line number Diff line
@@ -697,4 +697,11 @@ public class ImsConfig {
                    ImsReasonInfo.CODE_LOCAL_SERVICE_UNAVAILABLE);
                    ImsReasonInfo.CODE_LOCAL_SERVICE_UNAVAILABLE);
        }
        }
    }
    }

    /**
     * @return true if the binder connection is alive, false otherwise.
     */
    public boolean isBinderAlive() {
        return miConfig.asBinder().isBinderAlive();
    }
}
}