Hi all,
 
     <foreach item="String" in="${changes}" delim=" " property="folder">
is no longer valid in recent cvs version. This is becouse of
 
public string Delimiter {
  get { return _delim; }
  set { _delim = StringUtils.ConvertEmptyToNull(value);}
}
 
and ConvertEmptyToNull does trimming into its value. So delimiter is null and

throw new BuildException(@"Delimiter must be specified for item=""String""");

is thrown :-(
 
I think, this _is_ legal statement though.
 
Martin
 

Reply via email to