mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 22:17:05 +07:00
GitOrigin-RevId: e836468e05db28157713e9edd3c70382f8ecdebc
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";
|
|
}
|
|
} |