From 344fc99283d6c37cd0c13077223c645e174f2f95 Mon Sep 17 00:00:00 2001 From: Stefan Nikolei Date: Thu, 15 Dec 2022 21:16:59 +0100 Subject: [PATCH] Add #nullable disable Add nullable disable to ImageDecoder --- src/ImageSharp/Formats/ImageDecoder.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ImageSharp/Formats/ImageDecoder.cs b/src/ImageSharp/Formats/ImageDecoder.cs index 695e9c8446..591f85df2b 100644 --- a/src/ImageSharp/Formats/ImageDecoder.cs +++ b/src/ImageSharp/Formats/ImageDecoder.cs @@ -1,5 +1,6 @@ // Copyright (c) Six Labors. // Licensed under the Six Labors Split License. +#nullable disable using SixLabors.ImageSharp.IO; using SixLabors.ImageSharp.PixelFormats;