mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-22 04:43:02 +07:00
GitOrigin-RevId: 4d6a5487576dbbc4aca9c89b067eec8218aff686
8 lines
149 B
Java
8 lines
149 B
Java
// "Remove 'if' statement" "true-preview"
|
|
class X {
|
|
int m(String s) {
|
|
for (int i = 0; i < 100; i++) {
|
|
}
|
|
return 1;
|
|
}
|
|
} |