From 9c9c7c99ea12487e0cdacd1d8073685a0cb22303 Mon Sep 17 00:00:00 2001 From: Eliot Jones Date: Sun, 9 Oct 2022 16:01:20 -0400 Subject: [PATCH] ci new namespace file scope unsupported --- src/UglyToad.PdfPig/InternalParsingOptions.cs | 59 ++++++++++--------- 1 file changed, 30 insertions(+), 29 deletions(-) diff --git a/src/UglyToad.PdfPig/InternalParsingOptions.cs b/src/UglyToad.PdfPig/InternalParsingOptions.cs index 004ffd00..5195fed8 100644 --- a/src/UglyToad.PdfPig/InternalParsingOptions.cs +++ b/src/UglyToad.PdfPig/InternalParsingOptions.cs @@ -1,34 +1,35 @@ -namespace UglyToad.PdfPig; - -using Logging; -using System.Collections.Generic; - -/// -/// but without being a public API/ -/// -internal class InternalParsingOptions +namespace UglyToad.PdfPig { - public IReadOnlyList Passwords { get; } + using Logging; + using System.Collections.Generic; - public bool UseLenientParsing { get; } - - public bool ClipPaths { get; } - - public bool SkipMissingFonts { get; } - - public ILog Logger { get; } - - public InternalParsingOptions( - IReadOnlyList passwords, - bool useLenientParsing, - bool clipPaths, - bool skipMissingFonts, - ILog logger) + /// + /// but without being a public API/ + /// + internal class InternalParsingOptions { - Passwords = passwords; - UseLenientParsing = useLenientParsing; - ClipPaths = clipPaths; - SkipMissingFonts = skipMissingFonts; - Logger = logger; + public IReadOnlyList Passwords { get; } + + public bool UseLenientParsing { get; } + + public bool ClipPaths { get; } + + public bool SkipMissingFonts { get; } + + public ILog Logger { get; } + + public InternalParsingOptions( + IReadOnlyList passwords, + bool useLenientParsing, + bool clipPaths, + bool skipMissingFonts, + ILog logger) + { + Passwords = passwords; + UseLenientParsing = useLenientParsing; + ClipPaths = clipPaths; + SkipMissingFonts = skipMissingFonts; + Logger = logger; + } } } \ No newline at end of file