From ec79e87715751816e4040053c7e88a7620e08021 Mon Sep 17 00:00:00 2001 From: Ynse Hoornenborg Date: Mon, 26 Sep 2022 22:18:16 +0200 Subject: [PATCH] Fix SA1101 --- .../Processors/Convolution/MedianRowOperation{TPixel}.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ImageSharp/Processing/Processors/Convolution/MedianRowOperation{TPixel}.cs b/src/ImageSharp/Processing/Processors/Convolution/MedianRowOperation{TPixel}.cs index 8caf33440d..dbb62f0c58 100644 --- a/src/ImageSharp/Processing/Processors/Convolution/MedianRowOperation{TPixel}.cs +++ b/src/ImageSharp/Processing/Processors/Convolution/MedianRowOperation{TPixel}.cs @@ -46,7 +46,7 @@ public MedianRowOperation(Rectangle bounds, Buffer2D targetPixels, Buffe /// [MethodImpl(InliningOptions.ShortMethod)] public int GetRequiredBufferLength(Rectangle bounds) - => (2 * this.kernelSize * this.kernelSize) + bounds.Width + (kernelSize * bounds.Width); + => (2 * this.kernelSize * this.kernelSize) + bounds.Width + (this.kernelSize * bounds.Width); public void Invoke(int y, Span span) {