mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-03 07:20:55 +07:00
10 lines
211 B
Java
10 lines
211 B
Java
// "Replace with a null check" "true-preview"
|
|
import java.util.stream.Stream;
|
|
|
|
class Test {
|
|
void test(String s) {
|
|
if(String.class.isInsta<caret>nce(s)) {
|
|
System.out.println("not null s");
|
|
}
|
|
}
|
|
} |