8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 225f5e4 commit 135ad70Copy full SHA for 135ad70
src/main/java/travelator/marketing/HighValueCustomersReport.kt
@@ -4,7 +4,8 @@ fun Sequence<String>.toHighValueCustomerReport(): Sequence<String> {
4
val valuableCustomers = this
5
.withoutHeader()
6
.map(String::toCustomerData)
7
- .filter { it.score >= 10 } // <1>
+ .filterNotNull()
8
+ .filter { it.score >= 10 }
9
.sortedBy(CustomerData::score)
10
.toList()
11
return sequenceOf("ID\tName\tSpend") +
0 commit comments