(int status)
| 1333 | |
| 1334 | |
| 1335 | @Override |
| 1336 | public void setStatus(int status) { |
| 1337 | |
| 1338 | if (isCommitted()) { |
| 1339 | return; |
| 1340 | } |
| 1341 | |
| 1342 | // Ignore any call from an included servlet |
| 1343 | if (included) { |
| 1344 | return; |
| 1345 | } |
| 1346 | |
| 1347 | getCoyoteResponse().setStatus(status); |
| 1348 | } |
| 1349 | |
| 1350 | |
| 1351 | // ------------------------------------------------------ Protected Methods |
no test coverage detected