mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-01 12:50:56 +07:00
9 lines
173 B
Plaintext
9 lines
173 B
Plaintext
class Test {
|
|
|
|
String useTest() {
|
|
for(int i=0; i<10; i++) {
|
|
if (Math.random() > 0.5) return "foo".trim();
|
|
}
|
|
return "bar".trim();
|
|
}
|
|
} |