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)
| 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. |
no test coverage detected