Skip to content

Commit

Permalink
PDFBOX-5868: make field private
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/pdfbox/trunk@1922891 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
THausherr committed Jan 4, 2025
1 parent 7c07a44 commit 4e9a534
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -160,8 +160,8 @@ public class PDFTextStripper extends LegacyPDFStreamEngine
// use a stack so we don't get confused if another BDC within "/ActualText... BDC" block
private final Deque<PDMarkedContent> currentMarkedContents = new ArrayDeque<>();
// to replace the unicode of the first TextPosition and empty the others
boolean firstActualTextPosition = false;
String actualText = null;
private boolean firstActualTextPosition = false;
private String actualText = null;

/**
* The charactersByArticle is used to extract text by article divisions. For example a PDF that has two columns like
Expand Down

0 comments on commit 4e9a534

Please sign in to comment.