Browse Source

Make ZlibInflateStream getData readonly

af/merge-core
Jason Nelson 8 years ago
parent
commit
c3a288091d
  1. 2
      src/ImageSharp/Formats/Png/Zlib/ZlibInflateStream.cs

2
src/ImageSharp/Formats/Png/Zlib/ZlibInflateStream.cs

@ -50,7 +50,7 @@ namespace SixLabors.ImageSharp.Formats.Png.Zlib
/// <summary>
/// Delegate to get more data once we've exhausted the current data remaining
/// </summary>
private Func<int> getData;
private readonly Func<int> getData;
/// <summary>
/// Initializes a new instance of the <see cref="ZlibInflateStream"/> class.

Loading…
Cancel
Save