We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a44295b commit 9b9a109Copy full SHA for 9b9a109
src/ImageSharp.Drawing/Shapes/Path.cs
@@ -50,7 +50,7 @@ public Path(Path path)
50
public Path(params ILineSegment[] segments)
51
{
52
ArgumentNullException.ThrowIfNull(segments);
53
- this.lineSegments = segments ?? throw new ArgumentNullException(nameof(segments));
+ this.lineSegments = segments;
54
}
55
56
/// <summary>
0 commit comments