MCPcopy Index your code
hub / github.com/apache/tomcat / pop

Method pop

java/org/apache/tomcat/util/digester/Digester.java:1919–1926  ·  view source on GitHub ↗

Pop the top object off of the stack, and return it. If there are no objects on the stack, return null . @return the top object

()

Source from the content-addressed store, hash-verified

1917 * @return the top object
1918 */
1919 public Object pop() {
1920 try {
1921 return stack.pop();
1922 } catch (EmptyStackException e) {
1923 log.warn(sm.getString("digester.emptyStack"));
1924 return null;
1925 }
1926 }
1927
1928
1929 /**

Callers 15

endDocumentMethod · 0.95
runMethod · 0.45
endMethod · 0.45
endMethod · 0.45
endMethod · 0.45
endMethod · 0.45
stopInternalMethod · 0.45
setSocketOptionsMethod · 0.45
stopInternalMethod · 0.45
setSocketOptionsMethod · 0.45

Calls 2

warnMethod · 0.65
getStringMethod · 0.65

Tested by 3

runMethod · 0.36