Skip to content

Commit 44b0311

Browse files
Remove "new"
1 parent 4029b15 commit 44b0311

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/ImageSharp/Formats/AnimationUtilities.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ public static (bool Difference, Rectangle Bounds) DeDuplicatePixels<TPixel>(
161161
bounds.Y = Math.Max(0, bounds.Y - (bounds.Y & 1));
162162
}
163163

164-
return new(hasDiff, bounds);
164+
return (hasDiff, bounds);
165165
}
166166

167167
public static void CopySource<TPixel>(ImageFrame<TPixel> source, ImageFrame<TPixel> destination, Rectangle bounds)

0 commit comments

Comments
 (0)