1
0
mirror of https://github.com/NoCheatPlus/NoCheatPlus.git synced 2025-01-19 22:11:21 +01:00

missed a uncatched exception

This commit is contained in:
Evenprime 2011-05-16 16:00:17 +02:00
parent 5a72df08f7
commit 1fe7aaa1ae
2 changed files with 2 additions and 2 deletions
plugin.yml
src/cc/co/evenprime/bukkit/nocheat/yaml

View File

@ -3,7 +3,7 @@ name: NoCheat
author: Evenprime author: Evenprime
main: cc.co.evenprime.bukkit.nocheat.NoCheat main: cc.co.evenprime.bukkit.nocheat.NoCheat
version: 1.00 version: 1.00a
commands: commands:
nocheat: nocheat:

View File

@ -104,7 +104,7 @@ public class SimpleYaml {
return ((Map<String, Object>)getProperty(path, node)).keySet(); return ((Map<String, Object>)getProperty(path, node)).keySet();
} }
catch(Exception e) { catch(Exception e) {
e.printStackTrace(); //e.printStackTrace();
return new HashSet<String>(); return new HashSet<String>();
} }
} }