MCPcopy Create free account
hub / github.com/apache/tomcat / popPrefixMapping

Method popPrefixMapping

java/org/apache/jasper/compiler/PageInfo.java:481–486  ·  view source on GitHub ↗

Removes the URI at the top of the stack of URIs to which the given prefix is mapped. @param prefix The prefix whose stack of URIs is to be popped

(String prefix)

Source from the content-addressed store, hash-verified

479 * @param prefix The prefix whose stack of URIs is to be popped
480 */
481 public void popPrefixMapping(String prefix) {
482 Deque<String> stack = xmlPrefixMapper.get(prefix);
483 if (stack != null) {
484 stack.removeFirst();
485 }
486 }
487
488 /**
489 * Returns the URI to which the given prefix maps.

Callers 1

endPrefixMappingMethod · 0.80

Calls 2

removeFirstMethod · 0.80
getMethod · 0.65

Tested by

no test coverage detected