From db8ad347439ffdc8431a589b91968f61089c532b Mon Sep 17 00:00:00 2001 From: James Jackson-South Date: Tue, 2 May 2017 11:16:09 +1000 Subject: [PATCH] Remove unneeded check --- src/ImageSharp/Formats/Gif/GifDecoderCore.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ImageSharp/Formats/Gif/GifDecoderCore.cs b/src/ImageSharp/Formats/Gif/GifDecoderCore.cs index 5bec460cc7..589b7037a7 100644 --- a/src/ImageSharp/Formats/Gif/GifDecoderCore.cs +++ b/src/ImageSharp/Formats/Gif/GifDecoderCore.cs @@ -514,7 +514,7 @@ namespace ImageSharp.Formats [MethodImpl(MethodImplOptions.AggressiveInlining)] private void SetFrameMetaData(IMetaData metaData) { - if (this.graphicsControlExtension != null && this.graphicsControlExtension.DelayTime > 0) + if (this.graphicsControlExtension != null) { if (this.graphicsControlExtension.DelayTime > 0) {