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; }
}
}
}