mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
Of course not only for contains but for other methods having INSTANCEOF bar.rier
Otherwise using platform null values becomes for such methods becomes
dangerous in cases like `platformString in setOf("", "")`
8 lines
106 B
Java
Vendored
8 lines
106 B
Java
Vendored
import java.util.*;
|
|
|
|
public class J {
|
|
public static String nullValue() {
|
|
return null;
|
|
}
|
|
}
|