mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-30 10:20:15 +07:00
18 lines
394 B
Java
18 lines
394 B
Java
// "Replace with forEach" "false"
|
|
import java.io.ByteArrayOutputStream;
|
|
import java.io.DataOutputStream;
|
|
import java.io.IOException;
|
|
import java.util.List;
|
|
|
|
class Test {
|
|
|
|
private List<byte[]> reqs;
|
|
|
|
public ForEachTest () throws IOException {
|
|
DataOutputStream req = new DataOutputStream(new ByteArrayOutputStream());
|
|
for(byte[] val : r<caret>eqs) {
|
|
req.write(val);
|
|
}
|
|
}
|
|
}
|