File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ public void Dispose()
99
99
/// </summary>
100
100
/// <param name="stream">The stream to save the image to.</param>
101
101
/// <param name="encoder">The encoder to save the image with.</param>
102
- /// <exception cref="System. ArgumentNullException">Thrown if the stream or encoder is null.</exception>
102
+ /// <exception cref="ArgumentNullException">Thrown if the stream or encoder is null.</exception>
103
103
public void Save ( Stream stream , IImageEncoder encoder )
104
104
{
105
105
Guard . NotNull ( stream , nameof ( stream ) ) ;
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ namespace SixLabors.ImageSharp
23
23
public sealed class Image < TPixel > : Image
24
24
where TPixel : unmanaged, IPixel < TPixel >
25
25
{
26
- private ImageFrameCollection < TPixel > frames ;
26
+ private readonly ImageFrameCollection < TPixel > frames ;
27
27
28
28
/// <summary>
29
29
/// Initializes a new instance of the <see cref="Image{TPixel}"/> class
You can’t perform that action at this time.
0 commit comments