Skip to content

Commit a990ff3

Browse files
committed
spotless
1 parent 057381a commit a990ff3

File tree

1 file changed

+1
-4
lines changed
  • x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/physical

1 file changed

+1
-4
lines changed

x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/physical/MergeExec.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,7 @@ public MergeExec(Source source, List<PhysicalPlan> children, List<Attribute> out
3030
* Extracts the children as a list of suppliers. All children must be LocalSourceExec.
3131
*/
3232
public List<LocalSupplier> suppliers() {
33-
return children().stream()
34-
.map(LocalSourceExec.class::cast)
35-
.map(LocalSourceExec::supplier)
36-
.toList();
33+
return children().stream().map(LocalSourceExec.class::cast).map(LocalSourceExec::supplier).toList();
3734
}
3835

3936
@Override

0 commit comments

Comments
 (0)