mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 19:21:16 +07:00
9 lines
172 B
Java
9 lines
172 B
Java
// "Replace with a null check" "true-preview"
|
|
class Test {
|
|
void test(String s) {
|
|
Object obj = s;
|
|
if(obj != null) {
|
|
System.out.println("always");
|
|
}
|
|
}
|
|
} |