From 1fe7aaa1aee8966ba0246ca8e2d723a6018f1cb2 Mon Sep 17 00:00:00 2001 From: Evenprime Date: Mon, 16 May 2011 16:00:17 +0200 Subject: [PATCH] missed a uncatched exception --- plugin.yml | 2 +- src/cc/co/evenprime/bukkit/nocheat/yaml/SimpleYaml.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin.yml b/plugin.yml index 968d4266..e0915af5 100644 --- a/plugin.yml +++ b/plugin.yml @@ -3,7 +3,7 @@ name: NoCheat author: Evenprime main: cc.co.evenprime.bukkit.nocheat.NoCheat -version: 1.00 +version: 1.00a commands: nocheat: diff --git a/src/cc/co/evenprime/bukkit/nocheat/yaml/SimpleYaml.java b/src/cc/co/evenprime/bukkit/nocheat/yaml/SimpleYaml.java index d522f543..b14161e4 100644 --- a/src/cc/co/evenprime/bukkit/nocheat/yaml/SimpleYaml.java +++ b/src/cc/co/evenprime/bukkit/nocheat/yaml/SimpleYaml.java @@ -104,7 +104,7 @@ public class SimpleYaml { return ((Map)getProperty(path, node)).keySet(); } catch(Exception e) { - e.printStackTrace(); + //e.printStackTrace(); return new HashSet(); } }