Loading src/java/com/android/internal/telephony/imsphone/ImsPhone.java +3 −3 Original line number Diff line number Diff line Loading @@ -1837,9 +1837,9 @@ public class ImsPhone extends ImsPhoneBase { break; case EVENT_GET_CLIP_DONE: Bundle ssInfoResp = null; if (ar.exception == null) { ssInfoResp = (Bundle) ar.result; ImsSsInfo ssInfoResp = null; if (ar.exception == null && ar.result instanceof ImsSsInfo) { ssInfoResp = (ImsSsInfo) ar.result; } if (ss != null) { sendResponseOrRetryOnCsfbSs(ss, msg.what, ar.exception, ssInfoResp); Loading Loading
src/java/com/android/internal/telephony/imsphone/ImsPhone.java +3 −3 Original line number Diff line number Diff line Loading @@ -1837,9 +1837,9 @@ public class ImsPhone extends ImsPhoneBase { break; case EVENT_GET_CLIP_DONE: Bundle ssInfoResp = null; if (ar.exception == null) { ssInfoResp = (Bundle) ar.result; ImsSsInfo ssInfoResp = null; if (ar.exception == null && ar.result instanceof ImsSsInfo) { ssInfoResp = (ImsSsInfo) ar.result; } if (ss != null) { sendResponseOrRetryOnCsfbSs(ss, msg.what, ar.exception, ssInfoResp); Loading