mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 20:33:31 +07:00
GitOrigin-RevId: 8fe8b5b70f19cf1cb3b268edbacc07abcb155f3d
14 lines
227 B
Java
14 lines
227 B
Java
// "Extract side effects as an 'if' statement" "true-preview"
|
|
class Z {
|
|
|
|
void z() {
|
|
int i = 0;
|
|
for(int j=0;j<100;j++) {
|
|
if ((i < 100)) {
|
|
i++;
|
|
} else {
|
|
i--;
|
|
}
|
|
}
|
|
}
|
|
} |