Updated changelog, removed unused import

This commit is contained in:
GJ
2012-02-20 14:07:48 -05:00
parent b23fa36543
commit 1943ce884a
3 changed files with 3 additions and 4 deletions

View File

@ -825,7 +825,8 @@ public class PlayerProfile
}
public long getSkillDATS(AbilityType abilityType)
{
long convertedBack = skillsDATS.get(abilityType) * 1000;
//Is this actually unused, or should it actually be returning the convertedBack variable?
long convertedBack = skillsDATS.get(abilityType) * 1000;
return skillsDATS.get(abilityType);
}
public void setSkillDATS(AbilityType abilityType, long value)

View File

@ -20,8 +20,6 @@ import java.util.ArrayDeque;
import org.bukkit.block.Block;
import com.gmail.nossr50.mcMMO;
/*
* This file was created for a breakage introduced in 1.1-R2
* It should be removed afterwards if the breakage is removed.