mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-12 02:08:27 -04:00
More target-typed new and redundant paranthesis cleanup
This commit is contained in:
@@ -7,7 +7,7 @@ public class GreetGrouper<T>
|
||||
|
||||
public GreetGrouper()
|
||||
{
|
||||
group = new Dictionary<ulong, HashSet<T>>();
|
||||
group = new();
|
||||
}
|
||||
|
||||
|
||||
@@ -27,7 +27,7 @@ public class GreetGrouper<T>
|
||||
return false;
|
||||
}
|
||||
|
||||
group[guildId] = new HashSet<T>();
|
||||
group[guildId] = new();
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user