Merge change 1876

* changes:
  fix warning where we were boxing and int, only to have it automatically unboxed
This commit is contained in:
Android (Google) Code Review
2009-05-26 10:46:04 -07:00

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