[CLEANUP] Removed unused toLowerCase

This commit is contained in:
JKetelaar
2016-10-31 14:30:12 +01:00
parent ec7a12ae44
commit 7ff39b4cf2
+1 -1
View File
@@ -26,7 +26,7 @@ public class Core {
org.parabot.core.Core.verbose("Possible randoms:");
for (Random random : randoms) {
if (random.getServer().toLowerCase().equalsIgnoreCase(server.toLowerCase())) {
if (random.getServer().equalsIgnoreCase(server)) {
org.parabot.core.Core.verbose("-> " + random.getName());
Context.getInstance().getRandomHandler().addRandom(random);
}