_Never_ System.out.println() exceptions!

This commit is contained in:
main() 2012-01-23 17:43:21 +01:00
parent eebc5c6e62
commit c7d35f13f4

View File

@ -571,14 +571,8 @@ public class MVWorld implements MultiverseWorld {
this.saveConfig(); this.saveConfig();
return true; return true;
} }
} catch (NoSuchMethodException e) { } catch (Exception e) {
System.out.println(e); e.printStackTrace();
return false;
} catch (IllegalAccessException e) {
System.out.println(e);
return false;
} catch (InvocationTargetException e) {
System.out.println(e);
return false; return false;
} }
} }