mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 14:17:48 +07:00
GitOrigin-RevId: b411271e0d9d4670630f6a54dd7fac7bf1423a68
11 lines
226 B
Java
11 lines
226 B
Java
// "Remove 'for' statement" "true"
|
|
|
|
class Test {
|
|
|
|
void fillByteArray() {
|
|
byte[] plaintext = {0,0,0,0,0};
|
|
for (<caret>int counter = 0; counter < plaintext.length; counter++) {
|
|
plaintext[counter] = 0;
|
|
}
|
|
}
|
|
} |