diff options
| -rw-r--r-- | api/current.txt | 10 | ||||
| -rw-r--r-- | telephony/java/android/telephony/IccOpenLogicalChannelResponse.java | 10 |
2 files changed, 10 insertions, 10 deletions
diff --git a/api/current.txt b/api/current.txt index 3789c9348f3a..3642ff6c6ae3 100644 --- a/api/current.txt +++ b/api/current.txt @@ -28721,11 +28721,11 @@ package android.telephony { method public int getStatus(); method public void writeToParcel(android.os.Parcel, int); field public static final android.os.Parcelable.Creator CREATOR; - field public static int INVALID_CHANNEL; - field public static int STATUS_MISSING_RESOURCE; - field public static int STATUS_NO_ERROR; - field public static int STATUS_NO_SUCH_ELEMENT; - field public static int STATUS_UNKNOWN_ERROR; + field public static final int INVALID_CHANNEL = -1; // 0xffffffff + field public static final int STATUS_MISSING_RESOURCE = 2; // 0x2 + field public static final int STATUS_NO_ERROR = 1; // 0x1 + field public static final int STATUS_NO_SUCH_ELEMENT = 3; // 0x3 + field public static final int STATUS_UNKNOWN_ERROR = 4; // 0x4 } public class NeighboringCellInfo implements android.os.Parcelable { diff --git a/telephony/java/android/telephony/IccOpenLogicalChannelResponse.java b/telephony/java/android/telephony/IccOpenLogicalChannelResponse.java index dbe38eabbff6..4621f9175969 100644 --- a/telephony/java/android/telephony/IccOpenLogicalChannelResponse.java +++ b/telephony/java/android/telephony/IccOpenLogicalChannelResponse.java @@ -27,7 +27,7 @@ public class IccOpenLogicalChannelResponse implements Parcelable { /** * Indicates an invalid channel. */ - public static int INVALID_CHANNEL = -1; + public static final int INVALID_CHANNEL = -1; /** * Possible status values returned by open channel command. @@ -37,10 +37,10 @@ public class IccOpenLogicalChannelResponse implements Parcelable { * STATUS_NO_SUCH_ELEMENT: AID not found on UICC. * STATUS_UNKNOWN_ERROR: Unknown error in open channel command. */ - public static int STATUS_NO_ERROR = 1; - public static int STATUS_MISSING_RESOURCE = 2; - public static int STATUS_NO_SUCH_ELEMENT = 3; - public static int STATUS_UNKNOWN_ERROR = 4; + public static final int STATUS_NO_ERROR = 1; + public static final int STATUS_MISSING_RESOURCE = 2; + public static final int STATUS_NO_SUCH_ELEMENT = 3; + public static final int STATUS_UNKNOWN_ERROR = 4; private final int mChannel; private final int mStatus; |