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

Commit 46f54ef8 authored by Android (Google) Code Review's avatar Android (Google) Code Review
Browse files

Merge change 1876

* changes:
  fix warning where we were boxing and int, only to have it automatically unboxed
parents 8a86c79b d96bdb14
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -227,7 +227,7 @@ public class SslErrorHandler extends Handler {
                boolean hasKey = mSslPrefTable.containsKey(host);
                if (!hasKey ||
                    primary > mSslPrefTable.getInt(host)) {
                    mSslPrefTable.putInt(host, new Integer(primary));
                    mSslPrefTable.putInt(host, primary);
                }
            }
            loader.handleSslErrorResponse(proceed);