Skip to content

Commit

Permalink
[#1] Fixed compilation error
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaseder committed Jun 1, 2022
1 parent efe0e9a commit dcc3e8c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ class Demo13Reactive extends AbstractDemo {
// Rollback reason:
.collectList
.doOnError { _.printStackTrace() }
.onErrorReturn(List.of())
.onErrorReturn(java.util.List.of())

// This record is visible only if the transaction has been committed:
.thenMany(ctx
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ class Demo13Reactive extends AbstractDemo {
// Rollback reason:
.collectList
.doOnError { _.printStackTrace() }
.onErrorReturn(List.of())
.onErrorReturn(java.util.List.of())

// This record is visible only if the transaction has been committed:
.thenMany(ctx
Expand Down

0 comments on commit dcc3e8c

Please # to comment.