snowe
02/20/2019, 4:06 PMthanksforallthefish
02/20/2019, 4:12 PMResultValidatorImpl(actualEvents(),
MatchAllFieldFilter(listOf<FieldFilter>),
Supplier { null }
)
thanksforallthefish
02/20/2019, 4:13 PMsnowe
02/20/2019, 4:26 PMsnowe
02/20/2019, 4:27 PMsnowe
02/20/2019, 4:27 PMSupplier<Aggregate<Any>>
or Supplier<Aggregate<*>>
also do not worksnowe
02/20/2019, 4:28 PMSupplier<Aggregate<Any?>>
does work. I thought I tried that.thanksforallthefish
02/21/2019, 7:54 AMSupplier {}
would take the type for the return of the closure, if you return null
you need a nullable receiver, like Supplier<Aggregate?>
thanksforallthefish
02/21/2019, 7:55 AMSupplier<Any?>
works while Supplier<Any>
does not