Make numbersPattern private

This commit is contained in:
BobLd
2019-12-31 17:21:13 +00:00
committed by Eliot Jones
parent 39f275aaeb
commit e46df38f4d

View File

@@ -19,10 +19,7 @@ namespace UglyToad.PdfPig.DocumentLayoutAnalysis
/// </summary>
public static class DecorationTextBlockClassifier
{
/// <summary>
///
/// </summary>
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 = "@";
/// <summary>