Browse Source

Fix duplicate merge conflicts

pull/1923/head
quin lynch 3 years ago
parent
commit
4fedeee20b
2 changed files with 0 additions and 3 deletions
  1. +0
    -2
      src/Discord.Net.WebSocket/Entities/Channels/SocketVoiceChannel.cs
  2. +0
    -1
      test/Discord.Net.Tests.Unit/MockedEntities/MockedVoiceChannel.cs

+ 0
- 2
src/Discord.Net.WebSocket/Entities/Channels/SocketVoiceChannel.cs View File

@@ -36,8 +36,6 @@ namespace Discord.WebSocket
/// <inheritdoc />
public string Mention => MentionUtils.MentionChannel(Id);

/// <inheritdoc />
public string Mention => MentionUtils.MentionChannel(Id);
/// <inheritdoc />
public Task SyncPermissionsAsync(RequestOptions options = null)
=> ChannelHelper.SyncPermissionsAsync(this, Discord, options);


+ 0
- 1
test/Discord.Net.Tests.Unit/MockedEntities/MockedVoiceChannel.cs View File

@@ -27,7 +27,6 @@ namespace Discord
public string Name => throw new NotImplementedException();

public DateTimeOffset CreatedAt => throw new NotImplementedException();
public string Mention => throw new NotImplementedException();
public ulong Id => throw new NotImplementedException();

public Task AddPermissionOverwriteAsync(IRole role, OverwritePermissions permissions, RequestOptions options = null)


Loading…
Cancel
Save