mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-13 23:07:01 +07:00
9 lines
178 B
Java
9 lines
178 B
Java
// "Replace with a null check" "true-preview"
|
|
class Test {
|
|
void test(String s) {
|
|
Object object = s;
|
|
if(object != null) {
|
|
System.out.println("always");
|
|
}
|
|
}
|
|
} |