Minor cleanup.

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

View File

@ -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;
}