From e46df38f4d2b56a380b2aaba2b1a0ae0de0a4a40 Mon Sep 17 00:00:00 2001 From: BobLd Date: Tue, 31 Dec 2019 17:21:13 +0000 Subject: [PATCH] Make numbersPattern private --- .../DocumentLayoutAnalysis/DecorationTextBlockClassifier.cs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/UglyToad.PdfPig/DocumentLayoutAnalysis/DecorationTextBlockClassifier.cs b/src/UglyToad.PdfPig/DocumentLayoutAnalysis/DecorationTextBlockClassifier.cs index bf3ef550..8c7f0703 100644 --- a/src/UglyToad.PdfPig/DocumentLayoutAnalysis/DecorationTextBlockClassifier.cs +++ b/src/UglyToad.PdfPig/DocumentLayoutAnalysis/DecorationTextBlockClassifier.cs @@ -19,10 +19,7 @@ namespace UglyToad.PdfPig.DocumentLayoutAnalysis /// public static class DecorationTextBlockClassifier { - /// - /// - /// - public static Regex numbersPattern = new Regex(@"(\d+)|(\b([MDCLXVI]+)\b)", RegexOptions.IgnoreCase); + private static Regex numbersPattern = new Regex(@"(\d+)|(\b([MDCLXVI]+)\b)", RegexOptions.IgnoreCase); private static string replacementChar = "@"; ///