mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-07-27 15:48:27 +07:00
19 lines
281 B
Java
19 lines
281 B
Java
import org.jetbrains.annotations.NotNull;
|
|
|
|
public class MultipleMessages {
|
|
@NotNull
|
|
public Object foo1() {
|
|
return null;
|
|
}
|
|
|
|
@NotNull
|
|
public Object foo2() {
|
|
return null;
|
|
}
|
|
|
|
public void bar1(@NotNull Object a) {
|
|
}
|
|
|
|
public void bar2(@NotNull Object b) {
|
|
}
|
|
} |