public void endElement()

in src/main/java/org/apache/sling/scripting/xproc/xpl/XplBuilder.java [70:76]


		public void endElement(String uri, String localName, String name) throws SAXException {
			if (this.currentXplElement == null) {
                throw new IllegalStateException("Received closing '" + localName + "' but there was no element to close.");
            }
			
			this.currentXplElement = this.currentXplElement.getParent();
		}