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

Commit d96bdb14 authored by Mike Reed's avatar Mike Reed
Browse files

fix warning where we were boxing and int, only to have it automatically unboxed

parent 3e9b3eae
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);