Browse Source

Remove trailing whitespace

af/merge-core
Jason Nelson 8 years ago
parent
commit
369deb3cf6
  1. 6
      src/ImageSharp/Primitives/DenseMatrix{T}.cs

6
src/ImageSharp/Primitives/DenseMatrix{T}.cs

@ -180,9 +180,9 @@ namespace SixLabors.ImageSharp.Primitives
}
/// <inheritdoc/>
public bool Equals(DenseMatrix<T> other) =>
this.Columns == other.Columns &&
this.Rows == other.Rows &&
public bool Equals(DenseMatrix<T> other) =>
this.Columns == other.Columns &&
this.Rows == other.Rows &&
this.Span.SequenceEqual(other.Span);
/// <inheritdoc/>

Loading…
Cancel
Save