use of com.atlassian.extras.common.org.springframework.util.DefaultPropertiesPersister in project env-tool-suite by stormning.
the class Version2LicenseDecoder method loadLicenseConfiguration.
private Properties loadLicenseConfiguration(Reader text) {
try {
Properties props = new Properties();
(new DefaultPropertiesPersister()).load(props, text);
return props;
} catch (IOException var3) {
throw new LicenseException("Could NOT load properties from reader", var3);
}
}
Aggregations