()
| 321 | private final AtomicBoolean closed = new AtomicBoolean(false); |
| 322 | |
| 323 | @Override |
| 324 | public int read() throws IOException { |
| 325 | assertOpen(); |
| 326 | return file.read(); |
| 327 | } |
| 328 | |
| 329 | @Override |
| 330 | public int read(byte[] b) throws IOException { |
no test coverage detected