remove static for local function (recommended by VS2019)

This commit is contained in:
BobLd
2020-04-02 18:22:44 +01:00
committed by Eliot Jones
parent 064fa4922a
commit 401c4484b5

View File

@@ -911,7 +911,7 @@
internal static string ToFullSvg(this PdfSubpath p, double height) internal static string ToFullSvg(this PdfSubpath p, double height)
{ {
static string BboxToRect(PdfRectangle box, string stroke) string BboxToRect(PdfRectangle box, string stroke)
{ {
var overallBbox = $"<rect x='{box.Left}' y='{box.Bottom}' width='{box.Width}' height='{box.Height}' stroke-width='2' fill='none' stroke='{stroke}'></rect>"; var overallBbox = $"<rect x='{box.Left}' y='{box.Bottom}' width='{box.Width}' height='{box.Height}' stroke-width='2' fill='none' stroke='{stroke}'></rect>";
return overallBbox; return overallBbox;