mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-11 11:36:59 +07:00
- removed `commitDocument` call when `isQuick` argument is passed - pass `element` or `null` to `equalsToText` call (since there is not real need to take it for text comparison) GitOrigin-RevId: 27c5e1a2f484fc56d41dfd210832ae94c9a9b7ab
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);
|
|
}
|
|
}
|
|
} |