in src/java/org/apache/fulcrum/parser/BaseValueParser.java [355:369]
public void add(String name, String [] value)
{
// ArrayUtils.addAll() looks promising but it would also add
// null values into the parameters array, so we can't use that.
if (value != null)
{
for (int i = 0 ; i < value.length; i++)
{
if (value[i] != null)
{
add(name, value[i]);
}
}
}
}