Skip to content

Commit

Permalink
fix(demo): reduce the amount of row on the big dataset demo
Browse files Browse the repository at this point in the history
  • Loading branch information
scardanzan authored and mlopezFC committed Sep 3, 2024
1 parent 6b387b8 commit d119679
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public GridExporterBigDatasetDemo() throws EncryptedDocumentException, IOExcepti
BigDecimal[] total = new BigDecimal[1];
total[0] = BigDecimal.ZERO;
List<Person> persons =
IntStream.range(0, 7000)
IntStream.range(0, 1400)
.asLongStream()
.mapToObj(
number -> {
Expand Down

0 comments on commit d119679

Please sign in to comment.