()
| 225 | |
| 226 | |
| 227 | @Override |
| 228 | public void end() throws IOException { |
| 229 | if (responseFinished) { |
| 230 | return; |
| 231 | } |
| 232 | |
| 233 | if (lastActiveFilter == -1) { |
| 234 | outputStreamOutputBuffer.end(); |
| 235 | } else { |
| 236 | activeFilters[lastActiveFilter].end(); |
| 237 | } |
| 238 | |
| 239 | responseFinished = true; |
| 240 | } |
| 241 | |
| 242 | |
| 243 | // --------------------------------------------------------- Public Methods |