mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-01 09:04:15 +07:00
GitOrigin-RevId: fd52ace3d7a32ecd02c2c5ab90e077967604c15e
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();
|
|
}
|
|
} |