84a7e3c032
Refactor AbstractResolvedCallsTest to support multiple carets (multiple methods being tested for resolve) in testdata file.
14 lines
402 B
Kotlin
Vendored
14 lines
402 B
Kotlin
Vendored
fun <E : CharSequence> notNullValues(collection: List<E>) {
|
|
collection.<caret>stream()
|
|
collection.<caret>parallelStream()
|
|
}
|
|
|
|
fun <E : CharSequence> nullableValues(collection: List<E?>) {
|
|
collection.<caret>stream()
|
|
collection.<caret>parallelStream()
|
|
}
|
|
|
|
fun <E : CharSequence?> nullableValues2(collection: List<E>) {
|
|
collection.<caret>stream()
|
|
collection.<caret>parallelStream()
|
|
} |