Skip to content

Commit

Permalink
Fix NPE for tables.
Browse files Browse the repository at this point in the history
  • Loading branch information
kbirk committed Sep 26, 2024
1 parent 964567b commit b1803da
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -869,7 +869,7 @@ public Future<TextExtraction> extractTextFromPDF(

static class TableExtraction {

List<JsonNode> tables;
List<JsonNode> tables = new ArrayList<>();
}

public Future<TableExtraction> extractTablesFromPDF(
Expand Down

0 comments on commit b1803da

Please sign in to comment.