mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-17 12:01:25 +07:00
- make condition take into account names for members GitOrigin-RevId: 75a65e350f4b1d4c3adfef1e3f80023a4227247e
11 lines
118 B
Java
11 lines
118 B
Java
package a;
|
|
|
|
class Foo {
|
|
void requireNonNull(Object o) {
|
|
|
|
}
|
|
|
|
void m() {
|
|
Objects.requireNonNull(<caret>)
|
|
}
|
|
} |