in src/main/java/org/apache/sling/jcr/contentparser/impl/XmlContentParser.java [220:226]
private Object convertMultiValue(String[] values, int type) {
Object[] result = new Object[values.length];
for (int i=0; i<values.length; i++) {
result[i] = convertValue(values[i], type);
}
return helper.convertSingleTypeArray(result);
}