Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 205a2c3a authored by Wink Saville's avatar Wink Saville Committed by Android Git Automerger
Browse files

am 178b0660: Merge "DataConnection FailCause should use errorCode rather than...

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

* commit '178b0660':
  DataConnection FailCause should use errorCode rather than ordinal.
parents 08c00205 178b0660
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);
            }
        }