RED-10714: fix IndexOutOfBoundsException
(cherry picked from commit 0b6a292c7567b93c488e65729a85b50caf3e262d)
This commit is contained in:
parent
a821570065
commit
85432a2511
@ -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<>();
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user