1
0
mirror of https://github.com/mcMMO-Dev/mcMMO.git synced 2025-06-19 15:31:25 +02:00

Minor cleanup.

This commit is contained in:
GJ 2012-05-21 08:39:19 -04:00
parent a7f69545f2
commit 54b4faeeff

@ -268,9 +268,11 @@ public class Skills {
*/
public static SkillType getSkillType(String skillName) {
for (SkillType x : SkillType.values()) {
if (x.toString().equals(skillName.toUpperCase()))
if (x.toString().equals(skillName.toUpperCase())) {
return x;
}
}
return null;
}