We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f18e35 commit 6e70477Copy full SHA for 6e70477
src/ImageSharp/Memory/Buffer2D{T}.cs
@@ -138,7 +138,7 @@ internal Memory<T> GetSafeRowMemory(int y)
138
{
139
DebugGuard.MustBeGreaterThanOrEqualTo(y, 0, nameof(y));
140
DebugGuard.MustBeLessThan(y, this.Height, nameof(y));
141
- return this.FastMemoryGroup.View!.GetBoundedMemorySlice(y * (long)this.Width, this.Width);
+ return this.FastMemoryGroup.View.GetBoundedMemorySlice(y * (long)this.Width, this.Width);
142
}
143
144
/// <summary>
0 commit comments