()
| 247 | } |
| 248 | |
| 249 | protected int getChar() throws IOException { |
| 250 | if (start >= end) { |
| 251 | fill(); |
| 252 | if (start >= end) return -1; |
| 253 | } |
| 254 | return buf[start++]; |
| 255 | } |
| 256 | |
| 257 | /** |
| 258 | * Returns true if the given character is considered to be whitespace. One difference between |
no test coverage detected