toSet
<T:Ljava/lang/Object;>()Ljava/util/stream/Collector<TT;*Ljava/util/Set<TT;>;>;
<T:Ljava/lang/Object;>()L1java/util/stream/Collector<TT;*L1java/util/Set<TT;>;>
// ^^--- I guess this is the return value
I'm still learning the format of EEA so perhaps this is wrong but regardless my code inspection of toList/toSet to not be possible for it to return null.
It appears the Collectors.eaa file is incorrect.
That is
Collectors.toSet()
andCollectors.toList()
are reported as@Nullable
.Original toSet:
Should be marked as
L1
I'm still learning the format of EEA so perhaps this is wrong but regardless my code inspection of toList/toSet to not be possible for it to return null.