From 401c4484b53cee006e48e70d0385bb772a12b108 Mon Sep 17 00:00:00 2001 From: BobLd Date: Thu, 2 Apr 2020 18:22:44 +0100 Subject: [PATCH] remove static for local function (recommended by VS2019) --- src/UglyToad.PdfPig/Geometry/GeometryExtensions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/UglyToad.PdfPig/Geometry/GeometryExtensions.cs b/src/UglyToad.PdfPig/Geometry/GeometryExtensions.cs index 5e629f36..567bc6f4 100644 --- a/src/UglyToad.PdfPig/Geometry/GeometryExtensions.cs +++ b/src/UglyToad.PdfPig/Geometry/GeometryExtensions.cs @@ -911,7 +911,7 @@ internal static string ToFullSvg(this PdfSubpath p, double height) { - static string BboxToRect(PdfRectangle box, string stroke) + string BboxToRect(PdfRectangle box, string stroke) { var overallBbox = $""; return overallBbox;