Removes excess debug statemements added in previous commit

This commit is contained in:
Thijs Wiefferink 2014-12-10 13:15:38 +01:00
parent 5b961564e1
commit dd0930bcea

View File

@ -1658,12 +1658,6 @@ public abstract class GeneralRegion {
}
public double getDoubleSetting(String path) {
AreaShop.debug("getDoubleSetting(" + path + "):");
AreaShop.debug(" config.isDouble() = " + config.isDouble(path));
AreaShop.debug(" config.getDouble() = " + config.getDouble(path));
AreaShop.debug(" config.isInteger() = " + config.isInt(path));
AreaShop.debug(" config.getInteger() = " + config.getInt(path));
AreaShop.debug(" config.isSet() = " + config.isSet(path));
if(config.isSet(path)) {
return config.getDouble(path);
}