Browse Source

Disable SA1401 in file: Fields should be private

pull/1811/head
Brian Popow 5 years ago
parent
commit
42c2cf7a79
  1. 2
      src/ImageSharp/Formats/Webp/Lossy/Vp8SegmentInfo.cs

2
src/ImageSharp/Formats/Webp/Lossy/Vp8SegmentInfo.cs

@ -10,6 +10,7 @@ namespace SixLabors.ImageSharp.Formats.Webp.Lossy
/// <summary> /// <summary>
/// Gets the quantization matrix y1. /// Gets the quantization matrix y1.
/// </summary> /// </summary>
#pragma warning disable SA1401 // Fields should be private
public Vp8Matrix Y1; public Vp8Matrix Y1;
/// <summary> /// <summary>
@ -21,6 +22,7 @@ namespace SixLabors.ImageSharp.Formats.Webp.Lossy
/// Gets the quantization matrix uv. /// Gets the quantization matrix uv.
/// </summary> /// </summary>
public Vp8Matrix Uv; public Vp8Matrix Uv;
#pragma warning restore SA1401 // Fields should be private
/// <summary> /// <summary>
/// Gets or sets the quant-susceptibility, range [-127,127]. Zero is neutral. Lower values indicate a lower risk of blurriness. /// Gets or sets the quant-susceptibility, range [-127,127]. Zero is neutral. Lower values indicate a lower risk of blurriness.

Loading…
Cancel
Save