am 178b0660: Merge "DataConnection FailCause should use errorCode rather than ordinal." into honeycomb-LTE

* commit '178b066096d94f078fdb32bf9f66755bae34819d':
  DataConnection FailCause should use errorCode rather than ordinal.
This commit is contained in:
Wink Saville
2011-05-27 09:15:19 -07:00
committed by Android Git Automerger

View File

@@ -142,7 +142,7 @@ public abstract class DataConnection extends StateMachine {
static {
sErrorCodeToFailCauseMap = new HashMap<Integer, FailCause>();
for (FailCause fc : values()) {
sErrorCodeToFailCauseMap.put(fc.ordinal(), fc);
sErrorCodeToFailCauseMap.put(fc.getErrorCode(), fc);
}
}