From 369deb3cf6b29db27df28202d452c48eac4a0cad Mon Sep 17 00:00:00 2001 From: Jason Nelson Date: Tue, 5 Jun 2018 14:14:12 -0700 Subject: [PATCH] Remove trailing whitespace --- src/ImageSharp/Primitives/DenseMatrix{T}.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ImageSharp/Primitives/DenseMatrix{T}.cs b/src/ImageSharp/Primitives/DenseMatrix{T}.cs index 97fbdb2b3..828aeadfa 100644 --- a/src/ImageSharp/Primitives/DenseMatrix{T}.cs +++ b/src/ImageSharp/Primitives/DenseMatrix{T}.cs @@ -180,9 +180,9 @@ namespace SixLabors.ImageSharp.Primitives } /// - public bool Equals(DenseMatrix other) => - this.Columns == other.Columns && - this.Rows == other.Rows && + public bool Equals(DenseMatrix other) => + this.Columns == other.Columns && + this.Rows == other.Rows && this.Span.SequenceEqual(other.Span); ///