(byte b[], int offset, int length)
| 242 | } |
| 243 | |
| 244 | public void writeFile(byte b[], int offset, int length) { |
| 245 | final OutputStream echo = err ? stderrFile : stdoutFile; |
| 246 | if (echo != null) { |
| 247 | try { |
| 248 | echo.write(b, offset, length); |
| 249 | echo.flush(); |
| 250 | } catch (IOException e) { |
| 251 | e.printStackTrace(); |
| 252 | } |
| 253 | } |
| 254 | } |
| 255 | |
| 256 | public void write(int b) { |
| 257 | single[0] = (byte) b; |
no test coverage detected