Bug 812559 - Use Long instead of long in updateFaviconIdsForUrl(). r=lucasr

This commit is contained in:
Brian Nicholson 2012-11-19 10:39:43 -08:00
parent cf282fc37b
commit 7c0114301e

View File

@ -2717,7 +2717,7 @@ public class BrowserProvider extends ContentProvider {
return updated;
}
private void updateFaviconIdsForUrl(SQLiteDatabase db, String pageUrl, long faviconId) {
private void updateFaviconIdsForUrl(SQLiteDatabase db, String pageUrl, Long faviconId) {
ContentValues updateValues = new ContentValues(1);
updateValues.put(FaviconColumns.FAVICON_ID, faviconId);
db.update(TABLE_HISTORY,