mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 18:09:38 +07:00
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;
|
|
}
|
|
}
|
|
} |