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

Method moveAfter

src/main/java/net/optifine/util/LinkedList.java:87–90  ·  view source on GitHub ↗
(LinkedList.Node<T> nodePrev, LinkedList.Node<T> node)

Source from the content-addressed store, hash-verified

85 }
86
87 public void moveAfter(LinkedList.Node<T> nodePrev, LinkedList.Node<T> node) {
88 this.remove(node);
89 this.addAfter(nodePrev, node);
90 }
91
92 public boolean find(LinkedList.Node<T> nodeFind, LinkedList.Node<T> nodeFrom, LinkedList.Node<T> nodeTo) {
93 this.checkParent(nodeFrom);

Callers

nothing calls this directly

Calls 2

removeMethod · 0.95
addAfterMethod · 0.95

Tested by

no test coverage detected