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

This commit is contained in:
Mike Reed
2009-05-18 13:50:39 -04:00
parent 3e9b3eae7c
commit d96bdb145d

View File

@@ -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);