mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 18:09:38 +07:00
10 lines
187 B
Java
10 lines
187 B
Java
// "Replace with a null check" "true-preview"
|
|
import java.util.stream.Stream;
|
|
|
|
class Test {
|
|
void test(String s) {
|
|
if(s != null) {
|
|
System.out.println("not null s");
|
|
}
|
|
}
|
|
} |