diff --git a/src/Magick.NET/Netstandard21/Pixels/SafePixelCollection.cs b/src/Magick.NET/Netstandard21/Pixels/SafePixelCollection.cs index ab63822371..1708bbeeb9 100644 --- a/src/Magick.NET/Netstandard21/Pixels/SafePixelCollection.cs +++ b/src/Magick.NET/Netstandard21/Pixels/SafePixelCollection.cs @@ -19,14 +19,14 @@ namespace ImageMagick; internal sealed partial class SafePixelCollection { - public override ReadOnlySpan GetReadOnlyArea(int x, int y, int width, int height) + public override ReadOnlySpan GetReadOnlyArea(int x, int y, int width, int height) { CheckArea(x, y, width, height); return base.GetReadOnlyArea(x, y, width, height); } - public override ReadOnlySpan GetReadOnlyArea(IMagickGeometry geometry) + public override ReadOnlySpan GetReadOnlyArea(IMagickGeometry geometry) { Throw.IfNull(nameof(geometry), geometry);