Java: Accept qltest change showing FP removal.

This commit is contained in:
Anders Schack-Mulligen
2025-06-26 11:03:39 +02:00
parent 1d4c8197ec
commit 326f2b0498
2 changed files with 1 additions and 2 deletions

View File

@@ -64,7 +64,7 @@ public class A {
int sum = 0;
for (int i = 0; i < a.length; ) {
sum += a[i++]; // OK
sum += a[i++]; // OK - FP
sum += a[i++]; // OK
}
int len = b.length;
if ((len & 1) != 0)