Browse Source

Remove unneeded check

pull/205/head
James Jackson-South 9 years ago
parent
commit
db8ad34743
  1. 2
      src/ImageSharp/Formats/Gif/GifDecoderCore.cs

2
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)
{

Loading…
Cancel
Save