debug("Saving property " + propertyKey);
properties.put(propertyKey, propertyValue);
}
static void loadProperties(String path) {
csm.uttils.Archive propFile = new Archive(path);
String propString = propFile.readString();
Logger.getLogger(ConfigurationManager.class.getName()).debug("File: "
+ propFile.getFile().exists());
Logger.getLogger(ConfigurationManager.class.getName()).debug("File Path: "
+ propFile.getFile().getAbsolutePath());
String[] properties = propString.split("\n");
for (String property : properties) {
String[] propertyString = property.split("=");
if (propertyString.length == 2) {