Skip to content

Commit

Permalink
Remove empty returns tag
Browse files Browse the repository at this point in the history
  • Loading branch information
OoLunar committed Oct 7, 2024
1 parent 645734a commit 7725f16
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/Commands/Common/GuildIconCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ public static class GuildIconCommand
/// <param name="imageFormat">The image format of the icon to get.</param>
/// <param name="imageDimensions">The maximum size of the icon. Must be a power of two, minimum 16, maximum 4096.</param>
/// <param name="guildId">The ID of the guild to get the icon from. Defaults to the current server.</param>
/// <returns></returns>
[Command("guild_icon"), TextAlias("guild_picture"), RequirePermissions(DiscordPermissions.EmbedLinks, DiscordPermissions.None)]
public static async ValueTask ExecuteAsync(CommandContext context, ImageFormat imageFormat = ImageFormat.Auto, ushort imageDimensions = 0, ulong guildId = 0)
{
Expand Down
1 change: 0 additions & 1 deletion src/Commands/Common/InfoCommand/AllocationRateTracker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ public sealed class AllocationRateTracker
/// <summary>
/// Creates a new instance of the <see cref="AllocationRateTracker"/>, starting the allocation rate tracking in the background.
/// </summary>
/// <returns></returns>
public AllocationRateTracker() => _ = TrackAllocationRateAsync();

private async Task TrackAllocationRateAsync()
Expand Down
1 change: 0 additions & 1 deletion src/Commands/Moderation/EvalCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,6 @@ static EvalCommand()
/// </remarks>
/// <param name="context"></param>
/// <param name="code"></param>
/// <returns></returns>
[Command("eval"), Description("Not for you."), RequireApplicationOwner]
public static async ValueTask ExecuteAsync(CommandContext context, [FromCode] string code)
{
Expand Down

0 comments on commit 7725f16

Please sign in to comment.