Loading src/java/com/android/internal/telephony/GsmCdmaCallTracker.java +7 −2 Original line number Diff line number Diff line Loading @@ -1018,8 +1018,13 @@ public class GsmCdmaCallTracker extends CallTracker { for (Iterator<Connection> it = mHandoverConnections.iterator(); it.hasNext();) { Connection hoConnection = it.next(); log("handlePollCalls - disconnect hoConn= " + hoConnection); log("handlePollCalls - disconnect hoConn= " + hoConnection + " hoConn.State= " + hoConnection.getState()); if (hoConnection.getState().isRinging()) { hoConnection.onDisconnect(DisconnectCause.INCOMING_MISSED); } else { hoConnection.onDisconnect(DisconnectCause.NOT_VALID); } it.remove(); } Loading Loading
src/java/com/android/internal/telephony/GsmCdmaCallTracker.java +7 −2 Original line number Diff line number Diff line Loading @@ -1018,8 +1018,13 @@ public class GsmCdmaCallTracker extends CallTracker { for (Iterator<Connection> it = mHandoverConnections.iterator(); it.hasNext();) { Connection hoConnection = it.next(); log("handlePollCalls - disconnect hoConn= " + hoConnection); log("handlePollCalls - disconnect hoConn= " + hoConnection + " hoConn.State= " + hoConnection.getState()); if (hoConnection.getState().isRinging()) { hoConnection.onDisconnect(DisconnectCause.INCOMING_MISSED); } else { hoConnection.onDisconnect(DisconnectCause.NOT_VALID); } it.remove(); } Loading