_Never_ System.out.println() exceptions!

This commit is contained in:
main() 2012-01-23 17:43:21 +01:00
parent eebc5c6e62
commit c7d35f13f4
1 changed files with 2 additions and 8 deletions

View File

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