Skip to content

Commit f1669e2

Browse files
committed
final modifiers change in core, change to use getters and setters
DEVSIX-8225
1 parent b36929b commit f1669e2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pdfocr-api/src/main/java/com/itextpdf/pdfocr/OcrPdfCreator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -924,7 +924,7 @@ public PdfCanvas showText(GlyphLine text) {
924924
// unicode of the not found glyph
925925
String message = PdfOcrLogMessageConstant
926926
.COULD_NOT_FIND_CORRESPONDING_GLYPH_TO_UNICODE_CHARACTER;
927-
for (int i = glyphLine.start; i < glyphLine.end; i++) {
927+
for (int i = glyphLine.getStart(); i < glyphLine.getEnd(); i++) {
928928
if (isNotDefGlyph(currentFont, glyphLine.get(i))) {
929929
notDefGlyphsExists = true;
930930
message = MessageFormatUtil.format(PdfOcrLogMessageConstant

0 commit comments

Comments
 (0)