blob: 82c83b6e6f803769e85b78965b0e75cb0a0eeba0 [file] [log] [blame]
// "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);
}
}
}