Skip to content

Commit

Permalink
chore(core): make public access on allTasksWithChilds
Browse files Browse the repository at this point in the history
  • Loading branch information
tchiotludo committed Feb 18, 2022
1 parent 561ab18 commit cd45aa0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/io/kestra/core/models/flows/Flow.java
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ public Stream<Task> allTasks() {
.flatMap(Collection::stream);
}

private List<Task> allTasksWithChilds() {
public List<Task> allTasksWithChilds() {
return allTasks()
.flatMap(this::allTasksWithChilds)
.collect(Collectors.toList());
Expand Down

0 comments on commit cd45aa0

Please sign in to comment.