Browse Source

lint: newline on Emote#GetHashCode

tags/2.1.1
Christopher Felegy 6 years ago
parent
commit
63ccd05faa
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      src/Discord.Net.Core/Entities/Emotes/Emote.cs

+ 2
- 1
src/Discord.Net.Core/Entities/Emotes/Emote.cs View File

@@ -54,7 +54,8 @@ namespace Discord
}

/// <inheritdoc />
public override int GetHashCode() => Id.GetHashCode();
public override int GetHashCode()
=> Id.GetHashCode();

/// <summary> Parses an <see cref="Emote"/> from its raw format. </summary>
/// <param name="text">The raw encoding of an emote (e.g. <c>&lt;:dab:277855270321782784&gt;</c>).</param>


Loading…
Cancel
Save