GH-69 - Switch to Stream.toList().

This commit is contained in:
Oliver Drotbohm
2022-11-11 18:38:53 +01:00
parent d96263fe30
commit 55b16857f3
16 changed files with 27 additions and 34 deletions

View File

@@ -130,7 +130,7 @@ public class MomentsProperties {
return new ShiftedQuarters(Arrays.stream(Quarter.values())
.map(it -> ShiftedQuarter.of(it, shift))
.collect(Collectors.toList()));
.toList());
}
}
}