hotfix: unmerge super large tables

This commit is contained in:
Kilian Schuettler 2024-09-05 14:50:19 +02:00
parent 09c18c110a
commit 90a1187921

View File

@ -222,7 +222,7 @@ public class TOCEnrichmentService {
return table.getRows() return table.getRows()
.stream() .stream()
.flatMap(Collection::stream) .flatMap(Collection::stream)
.anyMatch(cell -> !cell.getHeaderCells().isEmpty()); .allMatch(cell -> cell.getHeaderCells().isEmpty());
} }