Skip to content

Commit

Permalink
Removed whitespace.
Browse files Browse the repository at this point in the history
  • Loading branch information
dlemstra committed Oct 15, 2023
1 parent aa26e66 commit 40f1730
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Magick.NET/Netstandard21/MagickImage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ public void ReadPixels(ReadOnlySpan<QuantumType> data, IPixelReadSettings<Quantu

var newReadSettings = CreateReadSettings(settings.ReadSettings);
SetSettings(newReadSettings);

var length = data.Length;
var expectedLength = GetExpectedByteLength(settings);
Throw.IfTrue(nameof(data), length < expectedLength, "The data length is {0} but should be at least {1}.", length, expectedLength);
Expand Down

0 comments on commit 40f1730

Please sign in to comment.