am 29d75c9a: Merge "Fixing improper boxing to Integer instead of Long."

* commit '29d75c9a10a1ff6d60e85a1931d042d3e24d9549':
  Fixing improper boxing to Integer instead of Long.
This commit is contained in:
Brad Fitzpatrick
2011-03-15 11:30:08 -07:00
committed by Android Git Automerger

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