mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-04 12:03:57 +07:00
GitOrigin-RevId: f00028d2e207670784887a66d2cd12cb61f11127
10 lines
208 B
Java
10 lines
208 B
Java
// "Move condition to loop" "false"
|
|
class Main {
|
|
public static void main(String[] args) {
|
|
while<caret> (true) {
|
|
if (!outputParser.processMessageLine(callback)) {
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
} |