diff options
Diffstat (limited to 'telephony/java/com/android/internal/telephony/ApnContext.java')
-rw-r--r-- | telephony/java/com/android/internal/telephony/ApnContext.java | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/telephony/java/com/android/internal/telephony/ApnContext.java b/telephony/java/com/android/internal/telephony/ApnContext.java index 010d61d..ce1a3b6 100644 --- a/telephony/java/com/android/internal/telephony/ApnContext.java +++ b/telephony/java/com/android/internal/telephony/ApnContext.java @@ -28,14 +28,8 @@ import java.util.concurrent.atomic.AtomicInteger; */ public class ApnContext { - public static final int PENDING_ACTION_NONE = 1; - public static final int PENDING_ACTION_RECONNECT = 2; - public static final int PENDING_ACTION_APN_DISABLE = 3; - public final String LOG_TAG; - private AtomicInteger mPendingAction; - protected static final boolean DBG = true; private final String mApnType; @@ -71,21 +65,12 @@ public class ApnContext { mApnType = apnType; mState = DataConnectionTracker.State.IDLE; setReason(Phone.REASON_DATA_ENABLED); - mPendingAction = new AtomicInteger(PENDING_ACTION_NONE); mDataEnabled = new AtomicBoolean(false); mDependencyMet = new AtomicBoolean(true); mWaitingApnsPermanentFailureCountDown = new AtomicInteger(0); LOG_TAG = logTag; } - public int getPendingAction() { - return mPendingAction.get(); - } - - public void setPendingAction(int pa) { - mPendingAction.set(pa); - } - public String getApnType() { return mApnType; } |