mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-02 14:38:30 +07:00
GitOrigin-RevId: fd52ace3d7a32ecd02c2c5ab90e077967604c15e
13 lines
262 B
Plaintext
13 lines
262 B
Plaintext
class Test {
|
|
|
|
void use(String s) {
|
|
String s1 = s+s;
|
|
if(s1 != null) {
|
|
s1 = s1.trim();
|
|
if (s1.isEmpty()) {
|
|
throw new IllegalArgumentException();
|
|
}
|
|
}
|
|
System.out.println("woohoo");
|
|
}
|
|
} |