mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-08 21:52:48 +07:00
9 lines
204 B
Java
9 lines
204 B
Java
class X {
|
|
public void test(String s) {
|
|
System.out.println(s.trim());
|
|
}
|
|
|
|
void use() {
|
|
test(<warning descr="Passing 'null' argument to parameter annotated as @NotNull">null</warning>);
|
|
}
|
|
} |