Remove old code

This commit is contained in:
chimp1984 2021-01-10 19:08:12 -05:00
parent 5245c205cb
commit bfbc657c22
No known key found for this signature in database
GPG Key ID: 9801B4EC591F90E3

View File

@ -154,15 +154,6 @@ public class MailboxMessageService implements SetupListener, RequestDataManager.
mailboxMessageList.add(mailboxItem);
});
persisted.forEach(mailboxItem -> {
DecryptedMessageWithPubKey decryptedMessageWithPubKey = mailboxItem.getDecryptedMessageWithPubKey();
MailboxMessage mailboxMessage = (MailboxMessage) decryptedMessageWithPubKey.getNetworkEnvelope();
String uid = mailboxMessage.getUid();
mailboxItemsByUid.putIfAbsent(uid, new ArrayList<>());
mailboxItemsByUid.get(uid).add(mailboxItem);
mailboxMessageList.add(mailboxItem);
});
completeHandler.run();
},
completeHandler);