/**
  * Saves the configuration to disk
  *
  * @return True if saved successfully
  */
 public final boolean save() {
   try {
     save(file);
     return true;
   } catch (Exception ex) {
     return false;
   }
 }