mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-24 14:26:37 +07:00
12 lines
311 B
Java
12 lines
311 B
Java
public class WrongParameter {
|
|
public boolean resolveAction(@NotNull Object action, @NotNull Object combatant, @NotNull Object userInputProvider) {
|
|
return false;
|
|
}
|
|
|
|
public void foo() {
|
|
resolveAction(
|
|
new Object(),
|
|
new Object(),
|
|
null); // Last parameter should be highlighted
|
|
}
|
|
} |