Cleaned up virtual methods

This commit is contained in:
RogueException
2016-10-06 00:02:13 -03:00
parent 3c3e790edd
commit 7e246f942e
3 changed files with 3 additions and 3 deletions

View File

@@ -53,7 +53,7 @@ namespace Discord.WebSocket
if (model.Recipients.IsSpecified)
UpdateUsers(state, model.Recipients.Value);
}
internal virtual void UpdateUsers(ClientState state, UserModel[] models)
private void UpdateUsers(ClientState state, UserModel[] models)
{
var users = new ConcurrentDictionary<ulong, SocketGroupUser>(ConcurrentHashSet.DefaultConcurrencyLevel, (int)(models.Length * 1.05));
for (int i = 0; i < models.Length; i++)