public static Map<String, String> getSection(String sectionName) {
return conf.getSectionImpl(sectionName);
}
private synchronized Map<String, String> getSectionImpl(String sectionName) {
IniFileSettingsHolder settings = getSettings();
if (settings == null) {
return Maps.newHashMap();
}
return settings.getSection(sectionName);
}