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

Commit a589419c authored by Cary Clark's avatar Cary Clark
Browse files

remove unused locals

found by findbugs
http://b/issue?id=1857022
parent c8a0a75e
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -43,9 +43,6 @@ public class DateSorter {
    
    private static final int NUM_DAYS_AGO = 5;

    Date mDate = new Date();
    Calendar mCal = Calendar.getInstance();

    /**
     * @param context Application context
     */
+1 −1
Original line number Diff line number Diff line
@@ -136,7 +136,7 @@ class Network {
            Assert.assertTrue(Thread.currentThread().
                    getName().equals(WebViewCore.THREAD_NAME));
        }
        mSslErrorHandler = new SslErrorHandler(this);
        mSslErrorHandler = new SslErrorHandler();
        mHttpAuthHandler = new HttpAuthHandler(this);

        mRequestQueue = new RequestQueue(context);
+1 −8
Original line number Diff line number Diff line
@@ -41,11 +41,6 @@ public class SslErrorHandler extends Handler {

    private static final String LOGTAG = "network";

    /**
     * Network.
     */
    private Network mNetwork;

    /**
     * Queue of loaders that experience SSL-related problems.
     */
@@ -72,9 +67,7 @@ public class SslErrorHandler extends Handler {
    /**
     * Creates a new error handler with an empty loader queue.
     */
    /* package */ SslErrorHandler(Network network) {
        mNetwork = network;

    /* package */ SslErrorHandler() {
        mLoaderQueue = new LinkedList<LoadListener>();
        mSslPrefTable = new Bundle();
    }