mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 00:20:54 +07:00
13 lines
251 B
Plaintext
13 lines
251 B
Plaintext
class Test {
|
|
|
|
String use(String s) {
|
|
String s1 = s+s;
|
|
if(s1 != null) {
|
|
s1 = s1.trim();
|
|
if (s1.isEmpty()) {
|
|
throw new IllegalArgumentException();
|
|
}
|
|
}
|
|
return "nice";
|
|
}
|
|
} |