From 0aa0a8256b5ef0dc8a6b06c884d15d5cfc82ca74 Mon Sep 17 00:00:00 2001 From: Jason Nelson Date: Wed, 21 Mar 2018 11:47:10 -0700 Subject: [PATCH] Remove blank line for STYLECOP! --- src/ImageSharp/Image.LoadPixelData.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/ImageSharp/Image.LoadPixelData.cs b/src/ImageSharp/Image.LoadPixelData.cs index 9df8b1d99..3d416b70e 100644 --- a/src/ImageSharp/Image.LoadPixelData.cs +++ b/src/ImageSharp/Image.LoadPixelData.cs @@ -97,10 +97,9 @@ namespace SixLabors.ImageSharp /// A new . public static Image LoadPixelData(Configuration config, TPixel[] data, int width, int height) where TPixel : struct, IPixel - { + { // There's an implict cast to Span from Array // Should we remove this overload and expose Span ? - return LoadPixelData(config, new Span(data), width, height); }