Browse Source

Remove trailing semicolon

pull/680/head
Jason Nelson 8 years ago
parent
commit
67e1445787
  1. 2
      src/ImageSharp/PixelFormats/NormalizedByte2.cs

2
src/ImageSharp/PixelFormats/NormalizedByte2.cs

@ -257,7 +257,7 @@ namespace SixLabors.ImageSharp.PixelFormats
/// <inheritdoc />
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public override int GetHashCode() => this.PackedValue.GetHashCode();;
public override int GetHashCode() => this.PackedValue.GetHashCode();
/// <inheritdoc />
public override string ToString()

Loading…
Cancel
Save