Skip to content

Commit

Permalink
Fix SA1101
Browse files Browse the repository at this point in the history
  • Loading branch information
ynse01 committed Sep 26, 2022
1 parent 1ec6da8 commit ec79e87
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public MedianRowOperation(Rectangle bounds, Buffer2D<TPixel> targetPixels, Buffe
/// <inheritdoc/>
[MethodImpl(InliningOptions.ShortMethod)]
public int GetRequiredBufferLength(Rectangle bounds)
=> (2 * this.kernelSize * this.kernelSize) + bounds.Width + (kernelSize * bounds.Width);
=> (2 * this.kernelSize * this.kernelSize) + bounds.Width + (this.kernelSize * bounds.Width);

public void Invoke(int y, Span<Vector4> span)
{
Expand Down

0 comments on commit ec79e87

Please sign in to comment.