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