()
| 28 | } |
| 29 | |
| 30 | @Override |
| 31 | public int read() throws IOException { |
| 32 | if(more) { |
| 33 | final int b = input.read(); |
| 34 | if(b != 0) return b == 0xFF ? input.read() : b; |
| 35 | more = false; |
| 36 | } |
| 37 | return -1; |
| 38 | } |
| 39 | |
| 40 | /** |
| 41 | * Flushes the remaining client data. |