Commit 288dc40c authored by Björn Richerzhagen's avatar Björn Richerzhagen
Browse files

Config: allow String arrays (seperated by ";")

parent 27cb8f2e
......@@ -586,6 +586,8 @@ public class DefaultConfigurator implements Configurator {
paramList[i] = convertToClass(valueList[i].trim());
}
param = paramList;
} else if (typeClass == String[].class) {
param = value.split(CLASS_SEPARATOR);
} else {
throw new IllegalArgumentException("Parameter type " + typeClass
+ " is not supported");
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment