Remove unused variable "rank" in HiscorePanel (#5843)

This commit is contained in:
Tyler Nichols
2018-10-06 03:02:23 -04:00
committed by Tomas Slusny
parent 2c29924891
commit 2a95e391d9

View File

@@ -513,7 +513,6 @@ public class HiscorePanel extends PluginPanel
{
case CLUE_SCROLL_ALL:
{
String rank = (result.getClueScrollAll().getRank() == -1) ? "Unranked" : StackFormatter.formatNumber(result.getClueScrollAll().getRank());
String allRank = (result.getClueScrollAll().getRank() == -1) ? "Unranked" : StackFormatter.formatNumber(result.getClueScrollAll().getRank());
String easyRank = (result.getClueScrollEasy().getRank() == -1) ? "Unranked" : StackFormatter.formatNumber(result.getClueScrollEasy().getRank());
String mediumRank = (result.getClueScrollMedium().getRank() == -1) ? "Unranked" : StackFormatter.formatNumber(result.getClueScrollMedium().getRank());