// there is no next load for this properties file
if (nextLoadKeyToUse == null) {
return null;
}
// make a copy of current existing properties
ConcurrentMapConfiguration config = new ConcurrentMapConfiguration();
// need to have all the properties to interpolate next load property value
copyProperties(ConfigurationManager.getConfigInstance(), config);
copyProperties(propConfig, config);
// In case this is a list of files to load, always treat the value as a list
List<Object> list = config.getList(nextLoadKeyToUse);
StringBuilder sb = new StringBuilder();
for (Object value: list) {
sb.append(value).append(",");
}
String nextLoad = sb.toString();