MCPcopy Create free account
hub / github.com/DGVPSH/SlackOpen / pop

Method pop

src/main/java/net/optifine/shaders/ProgramStack.java:20–31  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

18 }
19
20 public Program pop()
21 {
22 if (this.stack.isEmpty())
23 {
24 throw new RuntimeException("Program stack empty");
25 }
26 else
27 {
28 Program program = (Program)this.stack.pollLast();
29 return program;
30 }
31 }
32}

Callers 4

popProgramMethod · 0.80
loadModelsMethod · 0.80
func_150310_bMethod · 0.80
func_179269_aMethod · 0.80

Calls 1

isEmptyMethod · 0.45

Tested by

no test coverage detected