updatePropertiesFromSettings();
if (DEBUG) {
System.out.println("Just set properties: " + propertiesDescription);
System.out.println(toString());
}
FileOutputStream out = null;
try {
String folder = System.getProperty("user.home");
String filesep = System.getProperty("file.separator");
out = new FileOutputStream(folder
+ filesep
+ propertiesFilename);
properties.save(out, propertiesDescription);
} catch (java.io.IOException e) {
ErrorMessages.error("Can't save properties. " +
"Oh well, it's not a big deal.");
} finally {
if (out != null) {
try { out.close(); } catch (java.io.IOException e) { }
out = null;
}
}