From 42c2cf7a799af7c5a6b504ec6233fc6a7308c030 Mon Sep 17 00:00:00 2001 From: Brian Popow Date: Tue, 9 Nov 2021 13:40:40 +0100 Subject: [PATCH] Disable SA1401 in file: Fields should be private --- src/ImageSharp/Formats/Webp/Lossy/Vp8SegmentInfo.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ImageSharp/Formats/Webp/Lossy/Vp8SegmentInfo.cs b/src/ImageSharp/Formats/Webp/Lossy/Vp8SegmentInfo.cs index 71983055c0..2ce383d9e1 100644 --- a/src/ImageSharp/Formats/Webp/Lossy/Vp8SegmentInfo.cs +++ b/src/ImageSharp/Formats/Webp/Lossy/Vp8SegmentInfo.cs @@ -10,6 +10,7 @@ namespace SixLabors.ImageSharp.Formats.Webp.Lossy /// /// Gets the quantization matrix y1. /// +#pragma warning disable SA1401 // Fields should be private public Vp8Matrix Y1; /// @@ -21,6 +22,7 @@ namespace SixLabors.ImageSharp.Formats.Webp.Lossy /// Gets the quantization matrix uv. /// public Vp8Matrix Uv; +#pragma warning restore SA1401 // Fields should be private /// /// Gets or sets the quant-susceptibility, range [-127,127]. Zero is neutral. Lower values indicate a lower risk of blurriness.