From 6eb93e02883ad670972d0f27b3a3a4cb2a98dec0 Mon Sep 17 00:00:00 2001 From: James Jackson-South Date: Thu, 27 Apr 2017 19:23:23 +1000 Subject: [PATCH] Fix whitespace --- .../Processing/Processors/Transforms/ResizeProcessor.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ImageSharp/Processing/Processors/Transforms/ResizeProcessor.cs b/src/ImageSharp/Processing/Processors/Transforms/ResizeProcessor.cs index ecff3da2cd..31328d8b70 100644 --- a/src/ImageSharp/Processing/Processors/Transforms/ResizeProcessor.cs +++ b/src/ImageSharp/Processing/Processors/Transforms/ResizeProcessor.cs @@ -162,7 +162,7 @@ namespace ImageSharp.Processing.Processors for (int x = 0; x < width; x++) { // Destination color components - Vector4 destination = window.ComputeWeightedColumnSum(firstPassPixels,x, sourceY); + Vector4 destination = window.ComputeWeightedColumnSum(firstPassPixels, x, sourceY); destination = destination.Compress(); TPixel d = default(TPixel); d.PackFromVector4(destination); @@ -174,7 +174,7 @@ namespace ImageSharp.Processing.Processors for (int x = 0; x < width; x++) { // Destination color components - Vector4 destination = window.ComputeWeightedColumnSum(firstPassPixels,x, sourceY); + Vector4 destination = window.ComputeWeightedColumnSum(firstPassPixels, x, sourceY); TPixel d = default(TPixel); d.PackFromVector4(destination);