mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 17:51:09 +07:00
10 lines
185 B
Java
10 lines
185 B
Java
// "Replace with a null check" "true-preview"
|
|
class Test {
|
|
void test(String s) {
|
|
Object obj = s;
|
|
if (obj == null) {
|
|
return;
|
|
}
|
|
System.out.println("always");
|
|
}
|
|
} |