RED-10714: fix IndexOutOfBoundsException

(cherry picked from commit 0b6a292c7567b93c488e65729a85b50caf3e262d)
This commit is contained in:
Kilian Schuettler 2025-01-10 12:10:35 +01:00
parent a821570065
commit 85432a2511

View File

@ -71,6 +71,9 @@ public class TableOfContentsClassificationService {
private int identifyTOCItems(int start, List<TextBlockOnPage> textBlocks, ClassificationDocument document) {
if (start >= textBlocks.size()) {
return start;
}
ClassificationPage startPage = textBlocks.get(start).page();
List<TextBlockOnPage> initialLookAhead = textBlocks.subList(start, Math.min(start + SURROUNDING_BLOCKS_RADIUS, textBlocks.size()));
HashMap<NumberWord, TextBlockOnPage> numberToBlockLookup = new HashMap<>();