mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 22:09:38 +07:00
23 lines
327 B
Java
23 lines
327 B
Java
import org.jetbrains.annotations.*;
|
|
|
|
class Test {
|
|
void foo(@NotNull String s) {
|
|
s.substring(0);
|
|
}
|
|
|
|
/**
|
|
* @param str
|
|
*/
|
|
void bar(@NotNull String str) {
|
|
if (str.substring(0) == null) {
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param str
|
|
*/
|
|
void bar(@NotNull String str) {
|
|
if ((str).substring(0) == null) {
|
|
}
|
|
}
|
|
} |