فهرست منبع

remove dead code

B. Petersen 5 سال پیش
والد
کامیت
1aee902510
1فایلهای تغییر یافته به همراه0 افزوده شده و 17 حذف شده
  1. 0 17
      deltachat-ios/Controller/ChatListController.swift

+ 0 - 17
deltachat-ios/Controller/ChatListController.swift

@@ -269,23 +269,6 @@ class ChatListController: UITableViewController {
         tableView.reloadData()
     }
 
-    func updateDeaddropCell(_ cell: ContactCell, msgId: Int, cellData: AvatarCellViewModel) {
-        cell.backgroundColor = DcColors.deaddropBackground
-        cell.contentView.backgroundColor = DcColors.deaddropBackground
-
-        cell.updateCell(cellViewModel: cellData)
-/*
-        let contact = DcContact(id: DcMsg(id: msgId).fromContactId)
-        if let img = contact.profileImage {
-            cell.resetBackupImage()
-            cell.setImage(img)
-        } else {
-            cell.setBackupImage(name: contact.name, color: contact.color)
-        }
-
- */
-    }
-
     func getArchiveCell(_ tableView: UITableView, title: String) -> UITableViewCell {
         let archiveCell: UITableViewCell
         if let cell = tableView.dequeueReusableCell(withIdentifier: "ArchiveCell") {