From 72ea22bce03ca91d2304283c131dbc3e2350cf88 Mon Sep 17 00:00:00 2001 From: Jesse Gielen Date: Sun, 24 Jun 2018 16:00:04 +0200 Subject: [PATCH] Remove NotNull guard on value type --- .../Processing/Dithering/ErrorDiffusion/ErrorDiffuserBase.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/ImageSharp/Processing/Dithering/ErrorDiffusion/ErrorDiffuserBase.cs b/src/ImageSharp/Processing/Dithering/ErrorDiffusion/ErrorDiffuserBase.cs index 3bc1df0bb..f88123e5d 100644 --- a/src/ImageSharp/Processing/Dithering/ErrorDiffusion/ErrorDiffuserBase.cs +++ b/src/ImageSharp/Processing/Dithering/ErrorDiffusion/ErrorDiffuserBase.cs @@ -47,7 +47,6 @@ namespace SixLabors.ImageSharp.Processing.Dithering.ErrorDiffusion /// The divisor. internal ErrorDiffuserBase(DenseMatrix matrix, byte divisor) { - Guard.NotNull(matrix, nameof(matrix)); Guard.MustBeGreaterThan(divisor, 0, nameof(divisor)); this.matrix = matrix;