Issue #101 loops fixes

This commit is contained in:
Jindra Petk
2013-06-03 19:48:43 +02:00
parent 638eda692c
commit cad79165fe
15 changed files with 125 additions and 43 deletions

View File

@@ -128,7 +128,7 @@ public class Configuration {
ObjectInputStream ois = null;
try {
ois = new ObjectInputStream(new FileInputStream(file));
config = (HashMap<String, Object>) ois.readObject();
} catch (FileNotFoundException ex) {
} catch (ClassNotFoundException cnf) {