From 0472ffd3f177ca1350a756898035a93e8cedd482 Mon Sep 17 00:00:00 2001 From: James Jackson-South Date: Sat, 30 Jul 2022 22:15:47 +1000 Subject: [PATCH] Make default DecoderOptions internal --- src/ImageSharp/Formats/DecoderOptions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ImageSharp/Formats/DecoderOptions.cs b/src/ImageSharp/Formats/DecoderOptions.cs index 1fa28983d2..a608fcd524 100644 --- a/src/ImageSharp/Formats/DecoderOptions.cs +++ b/src/ImageSharp/Formats/DecoderOptions.cs @@ -17,7 +17,7 @@ namespace SixLabors.ImageSharp.Formats /// /// Gets the shared default general decoder options instance. /// - public static DecoderOptions Default { get; } = LazyOptions.Value; + internal static DecoderOptions Default { get; } = LazyOptions.Value; /// /// Gets or sets a custom Configuration instance to be used by the image processing pipeline.