Merge "Fixing improper boxing to Integer instead of Long."

This commit is contained in:
Brad Fitzpatrick
2011-03-15 11:03:29 -07:00
committed by Android Code Review

View File

@@ -235,7 +235,7 @@ public final class PduCache extends AbstractCache<Uri, PduCacheEntry> {
}
private void removeFromMessageBoxes(Uri key, PduCacheEntry entry) {
HashSet<Uri> msgBox = mThreads.get(entry.getMessageBox());
HashSet<Uri> msgBox = mThreads.get(Long.valueOf(entry.getMessageBox()));
if (msgBox != null) {
msgBox.remove(key);
}