Browse Source

Replace properties in description elements

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@278371 13f79535-47bb-0310-9956-ffa450edef68
master
Matthew Jason Benson 20 years ago
parent
commit
4285e2be2f
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/main/org/apache/tools/ant/types/Description.java

+ 2
- 2
src/main/org/apache/tools/ant/types/Description.java View File

@@ -99,9 +99,9 @@ public class Description extends DataType {
continue;
}
UnknownElement ue = ((UnknownElement) task);
StringBuffer descComp = ue.getWrapper().getText();
String descComp = ue.getWrapper().getText().toString();
if (descComp != null) {
description.append((Object) descComp);
description.append(project.replaceProperties(descComp));
}
}
}


Loading…
Cancel
Save