Commit c1470c67 authored by mrbean-bremen's avatar mrbean-bremen
Browse files

Reverted unneeded part of previous fix

- caused regression
No related merge requests found
Showing with 2 additions and 8 deletions
+2 -8
......@@ -15,10 +15,7 @@ namespace Svg.Pathing
public override void AddToPath(System.Drawing.Drawing2D.GraphicsPath graphicsPath)
{
if (this.Start != this.End)
{
graphicsPath.AddLine(this.Start, this.End);
}
graphicsPath.AddLine(this.Start, this.End);
}
public override string ToString()
......
......@@ -15,10 +15,7 @@ namespace Svg.Pathing
public override void AddToPath(System.Drawing.Drawing2D.GraphicsPath graphicsPath)
{
if (this.Start != this.End)
{
graphicsPath.StartFigure();
}
graphicsPath.StartFigure();
}
public override string ToString()
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment