diff --git a/src/ImageSharp/Formats/Webp/Lossless/Vp8LEncoder.cs b/src/ImageSharp/Formats/Webp/Lossless/Vp8LEncoder.cs index 6a0a3184ed..da815a479a 100644 --- a/src/ImageSharp/Formats/Webp/Lossless/Vp8LEncoder.cs +++ b/src/ImageSharp/Formats/Webp/Lossless/Vp8LEncoder.cs @@ -24,9 +24,9 @@ namespace SixLabors.ImageSharp.Formats.Webp.Lossless /// private readonly int[] scratch = new int[256]; - private int[][] histoArgb = { new int[256], new int[256], new int[256], new int[256] }; + private readonly int[][] histoArgb = { new int[256], new int[256], new int[256], new int[256] }; - private int[][] bestHisto = { new int[256], new int[256], new int[256], new int[256] }; + private readonly int[][] bestHisto = { new int[256], new int[256], new int[256], new int[256] }; /// /// The to use for buffer allocations.