Loading src/java/com/android/internal/telephony/dataconnection/DataConnection.java +7 −1 Original line number Diff line number Diff line Loading @@ -2401,7 +2401,13 @@ public class DataConnection extends StateMachine { } private void notifyDataConnectionState() { // The receivers of this have no way to differentiate between default and enterprise // connections. Do not notify for enterprise. if (!isEnterpriseUse()) { mPhone.notifyDataConnection(getPreciseDataConnectionState()); } else { log("notifyDataConnectionState: Skipping for enterprise; state=" + getState()); } } private DcDefaultState mDefaultState = new DcDefaultState(); Loading Loading
src/java/com/android/internal/telephony/dataconnection/DataConnection.java +7 −1 Original line number Diff line number Diff line Loading @@ -2401,7 +2401,13 @@ public class DataConnection extends StateMachine { } private void notifyDataConnectionState() { // The receivers of this have no way to differentiate between default and enterprise // connections. Do not notify for enterprise. if (!isEnterpriseUse()) { mPhone.notifyDataConnection(getPreciseDataConnectionState()); } else { log("notifyDataConnectionState: Skipping for enterprise; state=" + getState()); } } private DcDefaultState mDefaultState = new DcDefaultState(); Loading