Archived
0

Remove redundant toLowerCase()

This commit is contained in:
Dico200
2017-05-29 13:59:19 +02:00
parent 18dc672bdd
commit ba6ae69836

View File

@@ -143,7 +143,7 @@ public final class BlockPlaceMods implements Module, Listener
for (Mod mod : ModAbstract.getMods().values()) for (Mod mod : ModAbstract.getMods().values())
{ {
result.append("\n").append(ChatColor.AQUA.toString()).append("/mod ").append(ChatColor.ITALIC.toString()) result.append("\n").append(ChatColor.AQUA.toString()).append("/mod ").append(ChatColor.ITALIC.toString())
.append(mod.getName().toLowerCase()).append(ChatColor.GRAY.toString()).append(" - ") .append(mod.getName()).append(ChatColor.GRAY.toString()).append(" - ")
.append(mod.getDescription()); .append(mod.getDescription());
} }
return result.toString(); return result.toString();