true
12591260126112621263126412651266126712681269
if (stack == null) { return; } try { stack.pop(); if (stack.empty()) namespaces.remove(prefix); } catch (EmptyStackException e) { throw createSAXException("endPrefixMapping popped too many times"); }
867868869870871872873874875876877
10951096109710981099110011011102110311041105
791792793794795796797798799800801
ArrayStack stack = (ArrayStack) namespaces.get(prefix); if (stack == null) return; try { stack.pop(); if (stack.empty()) namespaces.remove(prefix); } catch (EmptyStackException e) { throw createSAXException("endPrefixMapping popped too many times"); }
159160161162163164165166167168169
HttpSession ses = req.getSession(false); if (ses != null && ses.getAttribute(BREADCRUMB) != null) { ArrayStack stack = (ArrayStack) ses.getAttribute(BREADCRUMB); if (stack != null && !stack.empty()) { crumb = (String)stack.peek(); } }
10731074107510761077107810791080108110821083
767768769770771772773774775776777
11041105110611071108110911101111111211131114
743744745746747748749750751752753
if (stack == null) { return; } try { stack.pop(); if (stack.empty()) { namespaces.remove(prefix); } } catch (EmptyStackException e) { throw createSAXException("endPrefixMapping popped too many times");
735736737738739740741742743744745