mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 01:50:56 +07:00
11 lines
224 B
Java
11 lines
224 B
Java
// "Replace 'foo().equals(...)' with 'Objects.equals(foo(), ...)'" "true-preview"
|
|
|
|
import org.jetbrains.annotations.*;
|
|
|
|
class A{
|
|
void test(Object bar) {
|
|
if (foo().equa<caret>ls(bar)) {}
|
|
}
|
|
|
|
@Nullable Object foo();
|
|
} |