Delete outdated comments.

This commit is contained in:
levlam 2023-06-19 17:48:12 +03:00
parent 2ea17ff61a
commit c9cd221d77
3 changed files with 3 additions and 3 deletions

View File

@ -1988,7 +1988,7 @@ class ContactsManager final : public Actor {
, promise(std::move(promise)) { , promise(std::move(promise)) {
} }
}; };
FlatHashMap<FileId, UploadedProfilePhoto, FileIdHash> uploaded_profile_photos_; // file_id -> promise FlatHashMap<FileId, UploadedProfilePhoto, FileIdHash> uploaded_profile_photos_;
struct ImportContactsTask { struct ImportContactsTask {
Promise<Unit> promise_; Promise<Unit> promise_;

View File

@ -133,7 +133,7 @@ class DocumentsManager {
FileId on_get_document(unique_ptr<GeneralDocument> new_document, bool replace); FileId on_get_document(unique_ptr<GeneralDocument> new_document, bool replace);
Td *td_; Td *td_;
WaitFreeHashMap<FileId, unique_ptr<GeneralDocument>, FileIdHash> documents_; // file_id -> GeneralDocument WaitFreeHashMap<FileId, unique_ptr<GeneralDocument>, FileIdHash> documents_;
}; };
} // namespace td } // namespace td

View File

@ -1053,7 +1053,7 @@ class StickersManager final : public Actor {
bool is_inited_ = false; bool is_inited_ = false;
WaitFreeHashMap<FileId, unique_ptr<Sticker>, FileIdHash> stickers_; // file_id -> Sticker WaitFreeHashMap<FileId, unique_ptr<Sticker>, FileIdHash> stickers_;
WaitFreeHashMap<StickerSetId, unique_ptr<StickerSet>, StickerSetIdHash> WaitFreeHashMap<StickerSetId, unique_ptr<StickerSet>, StickerSetIdHash>
sticker_sets_; // sticker_set_id -> StickerSet sticker_sets_; // sticker_set_id -> StickerSet
WaitFreeHashMap<string, StickerSetId> short_name_to_sticker_set_id_; WaitFreeHashMap<string, StickerSetId> short_name_to_sticker_set_id_;