From dd0930bcea00eb411ed1c3c1027768e995200b5b Mon Sep 17 00:00:00 2001 From: Thijs Wiefferink Date: Wed, 10 Dec 2014 13:15:38 +0100 Subject: [PATCH] Removes excess debug statemements added in previous commit --- src/nl/evolutioncoding/areashop/regions/GeneralRegion.java | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/nl/evolutioncoding/areashop/regions/GeneralRegion.java b/src/nl/evolutioncoding/areashop/regions/GeneralRegion.java index f9a90e3..e45f60c 100644 --- a/src/nl/evolutioncoding/areashop/regions/GeneralRegion.java +++ b/src/nl/evolutioncoding/areashop/regions/GeneralRegion.java @@ -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); }