From 8a3f40728c0452744e5ee751cf484b2820160262 Mon Sep 17 00:00:00 2001 From: Brian Popow Date: Fri, 23 Jul 2021 16:26:27 +0200 Subject: [PATCH] Remove setter from ChunkTypes property --- src/ImageSharp/Formats/WebP/WebpMetadata.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ImageSharp/Formats/WebP/WebpMetadata.cs b/src/ImageSharp/Formats/WebP/WebpMetadata.cs index 0eb466239..7020a386a 100644 --- a/src/ImageSharp/Formats/WebP/WebpMetadata.cs +++ b/src/ImageSharp/Formats/WebP/WebpMetadata.cs @@ -33,9 +33,9 @@ namespace SixLabors.ImageSharp.Formats.Webp public WebpFormatType Format { get; set; } /// - /// Gets or sets all found chunk types ordered by appearance. + /// Gets all found chunk types ordered by appearance. /// - public Queue ChunkTypes { get; set; } = new Queue(); + public Queue ChunkTypes { get; } = new Queue(); /// /// Gets or sets a value indicating whether the webp file contains an animation.