MCPcopy Index your code
hub / github.com/apache/tomcat / reset

Method reset

java/org/apache/coyote/Response.java:414–421  ·  view source on GitHub ↗

Reset the response to its initial state. @throws IllegalStateException if the response has already been committed

()

Source from the content-addressed store, hash-verified

412 * @throws IllegalStateException if the response has already been committed
413 */
414 public void reset() throws IllegalStateException {
415
416 if (committed) {
417 throw new IllegalStateException();
418 }
419
420 recycle(false);
421 }
422
423
424 // -------------------- Headers --------------------

Callers

nothing calls this directly

Calls 1

recycleMethod · 0.95

Tested by

no test coverage detected