Remove a bit of debug code

This commit is contained in:
Steven Scott 2011-09-03 17:15:20 -07:00
parent e781b6be50
commit 7e3efe2924

View File

@ -576,7 +576,6 @@ public class Stargate extends JavaPlugin {
public static String replaceVars(String format, String[] search, String[] replace) { public static String replaceVars(String format, String[] search, String[] replace) {
if (search.length != replace.length) return ""; if (search.length != replace.length) return "";
for (int i = 0; i < search.length; i++) { for (int i = 0; i < search.length; i++) {
Stargate.debug("replaceVars", "Replacing [" + search[i] + "] With [" + replace[i] + "]");
format = format.replaceAll(search[i], replace[i]); format = format.replaceAll(search[i], replace[i]);
} }
return format; return format;