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

This commit is contained in:
Brad Ebinger
2017-08-10 22:50:45 +00:00
committed by Gerrit Code Review

View File

@@ -697,4 +697,11 @@ public class ImsConfig {
ImsReasonInfo.CODE_LOCAL_SERVICE_UNAVAILABLE);
}
}
/**
* @return true if the binder connection is alive, false otherwise.
*/
public boolean isBinderAlive() {
return miConfig.asBinder().isBinderAlive();
}
}