Commit 53a298f
authored
fix: use Collectors.toList() for Java 11 compatibility (#6)
Stream.toList() was introduced in Java 16, but the SDK targets Java 11.
This was causing compilation failures on Java 11:
cannot find symbol
symbol: method toList()
location: interface java.util.stream.Stream<PlanStep>1 parent 43716e0 commit 53a298f
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
438 | 438 | | |
439 | 439 | | |
440 | 440 | | |
441 | | - | |
| 441 | + | |
442 | 442 | | |
443 | 443 | | |
444 | 444 | | |
| |||
0 commit comments