Removes the top element of the stack
()
| 736 | * Removes the top element of the stack |
| 737 | */ |
| 738 | private void popStack() { |
| 739 | stack[stackSize - 1] = 0; |
| 740 | stackSize--; |
| 741 | pathNames[stackSize] = null; // Free the last path name so that it can be garbage collected! |
| 742 | pathIndices[stackSize - 1]++; |
| 743 | } |
| 744 | |
| 745 | /** |
| 746 | * Returns a XPath to the current location in the XML value. |
no outgoing calls
no test coverage detected