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

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

am a61a1f69: Merge "Initialize mRetyMgr when constructing GsmDataConnectionTracker." into honeycomb

* commit 'a61a1f69':
  Initialize mRetyMgr when constructing GsmDataConnectionTracker.
parents df58a1bb a61a1f69
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -159,7 +159,10 @@ public final class GsmDataConnectionTracker extends DataConnectionTracker {
                Telephony.Carriers.CONTENT_URI, true, mApnObserver);

        /** Create the default connection */
        createDataConnection(Phone.APN_TYPE_DEFAULT);
        int id = createDataConnection(Phone.APN_TYPE_DEFAULT);
        mRetryMgr = mDataConnections.get(id).getRetryMgr();
        mRetryMgr.resetRetryCount();

        broadcastMessenger();
    }