mirror of
https://github.com/JustArchiNET/ArchiSteamFarm.git
synced 2026-01-01 14:10:53 +00:00
Misc optimization
This commit is contained in:
@@ -1503,7 +1503,7 @@ namespace ArchiSteamFarm {
|
||||
List<KeyValue> tags = description["tags"].Children;
|
||||
|
||||
if (tags.Count > 0) {
|
||||
HashSet<Steam.Asset.Tag> parsedTags = new HashSet<Steam.Asset.Tag>();
|
||||
HashSet<Steam.Asset.Tag> parsedTags = new HashSet<Steam.Asset.Tag>(tags.Count);
|
||||
|
||||
foreach (KeyValue tag in tags) {
|
||||
string identifier = tag["category"].AsString();
|
||||
|
||||
Reference in New Issue
Block a user