()
| 19 | } |
| 20 | |
| 21 | public void run() |
| 22 | { |
| 23 | try |
| 24 | { |
| 25 | int c; |
| 26 | while ((c = this.reader.read()) != -1) { |
| 27 | this.writer.write(c); |
| 28 | } |
| 29 | this.reader.close(); |
| 30 | this.buffer = this.writer.getBuffer(); |
| 31 | } catch (IOException exc) { |
| 32 | Main.logException("Unable to read from input stream", exc); |
| 33 | } |
| 34 | } |
| 35 | |
| 36 | public StringBuffer getBuffer() |
| 37 | throws IllegalThreadStateException |
nothing calls this directly
no test coverage detected