From 467f3f34079c885c90a59402faa6cd3797ef46e4 Mon Sep 17 00:00:00 2001 From: Olivia Date: Mon, 19 Dec 2016 15:11:53 +0100 Subject: [PATCH] Fixing Values inside HuffmanLut. --- src/ImageSharp/Formats/Jpg/JpegEncoderCore.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/ImageSharp/Formats/Jpg/JpegEncoderCore.cs b/src/ImageSharp/Formats/Jpg/JpegEncoderCore.cs index 3144fdbd34..55901033c2 100644 --- a/src/ImageSharp/Formats/Jpg/JpegEncoderCore.cs +++ b/src/ImageSharp/Formats/Jpg/JpegEncoderCore.cs @@ -968,11 +968,6 @@ namespace ImageSharp.Formats /// private class HuffmanLut { - /// - /// The collection of huffman values. - /// - public readonly uint[] Values; - /// /// Initializes a new instance of the class. /// @@ -1007,6 +1002,11 @@ namespace ImageSharp.Formats code <<= 1; } } + + /// + /// Gets the collection of huffman values. + /// + public uint[] Values { get; } } } }