mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-02 09:22:02 +07:00
GitOrigin-RevId: 8b2b63fc6db476ca0c2cfe5cadd84db6c4236d0f
14 lines
249 B
Plaintext
14 lines
249 B
Plaintext
void test() {
|
|
while (checkCondition()) {
|
|
somethingElse();
|
|
<spot>if (extracted()) break;</spot>
|
|
}
|
|
}
|
|
|
|
<spot>private boolean extracted() {
|
|
if (checkCondition()) {
|
|
return true;
|
|
}
|
|
System.out.println("Text");
|
|
return false;
|
|
}</spot> |