mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-08 21:52:48 +07:00
GitOrigin-RevId: 1239c130bdc0a2a0e9ae5a335d8ae342995c6475
23 lines
333 B
Java
23 lines
333 B
Java
import org.jetbrains.annotations.NotNull;
|
|
|
|
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) {
|
|
}
|
|
}
|
|
} |