Skip to content

Commit 4e9a534

Browse files
committed
PDFBOX-5868: make field private
git-svn-id: https://svn.apache.org/repos/asf/pdfbox/trunk@1922891 13f79535-47bb-0310-9956-ffa450edef68
1 parent 7c07a44 commit 4e9a534

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pdfbox/src/main/java/org/apache/pdfbox/text/PDFTextStripper.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,8 +160,8 @@ public class PDFTextStripper extends LegacyPDFStreamEngine
160160
// use a stack so we don't get confused if another BDC within "/ActualText... BDC" block
161161
private final Deque<PDMarkedContent> currentMarkedContents = new ArrayDeque<>();
162162
// to replace the unicode of the first TextPosition and empty the others
163-
boolean firstActualTextPosition = false;
164-
String actualText = null;
163+
private boolean firstActualTextPosition = false;
164+
private String actualText = null;
165165

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

0 commit comments

Comments
 (0)