runescape-api: remove RSCacheableNode::getNext() and getPrevious().

They are different than RSNode's next and previous, but have the same signature so they can get called instead. This caused the ground overlay to only show 1 item because it was iterating the cache, not the item list.
This commit is contained in:
Max Weber
2018-01-29 06:40:43 -07:00
parent 550a079093
commit b66cb70751

View File

@@ -28,9 +28,4 @@ import net.runelite.mapping.Import;
public interface RSCacheableNode extends RSNode
{
@Import("next")
RSCacheableNode getNext();
@Import("previous")
RSCacheableNode getPrevious();
}