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

Method next

src/main/java/net/optifine/util/LinkedList.java:138–146  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

136 }
137
138 public LinkedList.Node<T> next() {
139 LinkedList.Node<T> node = this.node;
140
141 if (this.node != null) {
142 this.node = this.node.next;
143 }
144
145 return node;
146 }
147
148 public void remove() {
149 throw new UnsupportedOperationException("remove");

Callers 9

loadLocaleDataMethod · 0.45
getGroupMethod · 0.45
getImageSizeMethod · 0.45
toStringMethod · 0.45
makeEntityRenderMethod · 0.45
modifyModelMethod · 0.45
handlePacketMethod · 0.45
getItemAtkDamageMethod · 0.45
onRenderMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected