mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
16 lines
281 B
Plaintext
16 lines
281 B
Plaintext
|
|
class Test {
|
|
|
|
String use(String[] list) {
|
|
for(String str : list) {
|
|
String s = str;
|
|
if(s != null) {
|
|
s = s.trim();
|
|
if (s.isEmpty()) {
|
|
continue;
|
|
}
|
|
}
|
|
System.out.println("Ok string: "+str);
|
|
}
|
|
}
|
|
} |