From b88ce8c51fbbc47a42c1e1dcacf8af60dadc8a4d Mon Sep 17 00:00:00 2001 From: Paulo Date: Fri, 2 Feb 2018 19:21:16 -0200 Subject: [PATCH] Remove IGuild.DownloadUsersAsync() from SocketGuild (#944) --- src/Discord.Net.WebSocket/Entities/Guilds/SocketGuild.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Discord.Net.WebSocket/Entities/Guilds/SocketGuild.cs b/src/Discord.Net.WebSocket/Entities/Guilds/SocketGuild.cs index ea68a8f54..e70df8ce8 100644 --- a/src/Discord.Net.WebSocket/Entities/Guilds/SocketGuild.cs +++ b/src/Discord.Net.WebSocket/Entities/Guilds/SocketGuild.cs @@ -696,7 +696,6 @@ namespace Discord.WebSocket => Task.FromResult(CurrentUser); Task IGuild.GetOwnerAsync(CacheMode mode, RequestOptions options) => Task.FromResult(Owner); - Task IGuild.DownloadUsersAsync() { throw new NotSupportedException(); } async Task IGuild.GetWebhookAsync(ulong id, RequestOptions options) => await GetWebhookAsync(id, options);