Skip to content

Commit

Permalink
temp hide pdftextremover #538
Browse files Browse the repository at this point in the history
  • Loading branch information
EliotJones committed Jun 5, 2023
1 parent 7fe5fc2 commit 4118ae0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/UglyToad.PdfPig.Tests/PublicApiScannerTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,6 @@ public void OnlyExposedApiIsPublic()
"UglyToad.PdfPig.Writer.PdfAStandard",
"UglyToad.PdfPig.Writer.PdfDocumentBuilder",
"UglyToad.PdfPig.Writer.PdfMerger",
"UglyToad.PdfPig.Writer.PdfTextRemover",
"UglyToad.PdfPig.Writer.PdfWriterType",
"UglyToad.PdfPig.Writer.PdfPageBuilder",
"UglyToad.PdfPig.Writer.TokenWriter",
Expand Down
6 changes: 5 additions & 1 deletion src/UglyToad.PdfPig/Writer/PdfTextRemover.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@ namespace UglyToad.PdfPig.Writer
/// Class to remove text from PDFs, useful as a preprocessing step for Optical Character Recognition (OCR).
/// Note that this should not be used to redact content from PDFs, this is not a secure or reliable way to redact text.
/// </summary>
public static class PdfTextRemover
/// <remarks>
/// This is being made internal for release of the next major version subject to some refinements.
/// It can be re-enabled for nightly versions of 0.1.9.
/// </remarks>
internal static class PdfTextRemover
{
/// <summary>
/// Return PDF without text as bytes
Expand Down

0 comments on commit 4118ae0

Please sign in to comment.