Cleaned up TODOs

This commit is contained in:
RogueException
2016-10-08 18:44:59 -03:00
parent 8ab675e775
commit 6bdc0c09ca
7 changed files with 9 additions and 13 deletions

View File

@@ -153,8 +153,8 @@ namespace Discord.WebSocket
//IChannel
IAsyncEnumerable<IReadOnlyCollection<IUser>> IChannel.GetUsersAsync(CacheMode mode, RequestOptions options)
=> ImmutableArray.Create<IReadOnlyCollection<IUser>>(Users).ToAsyncEnumerable(); //Overriden in Text/Voice //TODO: Does this actually override?
=> ImmutableArray.Create<IReadOnlyCollection<IUser>>(Users).ToAsyncEnumerable(); //Overriden in Text/Voice
Task<IUser> IChannel.GetUserAsync(ulong id, CacheMode mode, RequestOptions options)
=> Task.FromResult<IUser>(GetUser(id)); //Overriden in Text/Voice //TODO: Does this actually override?
=> Task.FromResult<IUser>(GetUser(id)); //Overriden in Text/Voice
}
}