From a9fc9f949f555e93dfe403727968ee97a64c588c Mon Sep 17 00:00:00 2001 From: pajlada Date: Sat, 3 Sep 2022 13:01:56 +0200 Subject: [PATCH] Remove unused mutex from Emotes (#3943) The mutex was initially used to limit access to the twitchEmotesCache_ member but it's no longer necessary since it's been made a UniqueAccess type --- src/providers/twitch/TwitchEmotes.hpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/providers/twitch/TwitchEmotes.hpp b/src/providers/twitch/TwitchEmotes.hpp index 0f0234a4..437157d3 100644 --- a/src/providers/twitch/TwitchEmotes.hpp +++ b/src/providers/twitch/TwitchEmotes.hpp @@ -45,8 +45,6 @@ private: Url getEmoteLink(const EmoteId &id, const QString &emoteScale); UniqueAccess>> twitchEmotesCache_; - - std::mutex mutex_; }; } // namespace chatterino