()
| 137 | } |
| 138 | |
| 139 | @Override |
| 140 | public void clearBuffer() throws IOException { |
| 141 | if (bufferSize == 0) { |
| 142 | throw new IllegalStateException(Localizer.getMessage("jsp.error.ise_on_clear")); |
| 143 | } |
| 144 | ensureOpen(); |
| 145 | nextChar = 0; |
| 146 | } |
| 147 | |
| 148 | private void bufferOverflow() throws IOException { |
| 149 | throw new IOException(Localizer.getMessage("jsp.error.overflow")); |
no test coverage detected