Browse Source

Properties aren't necessarily delimited by ${} anymore.

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@690716 13f79535-47bb-0310-9956-ffa450edef68
master
Matthew Jason Benson 17 years ago
parent
commit
284423a5c2
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/main/org/apache/tools/ant/property/ParseProperties.java

+ 1
- 1
src/main/org/apache/tools/ant/property/ParseProperties.java View File

@@ -65,7 +65,7 @@ public class ParseProperties implements ParseNextProperty {
* <code>null</code> if the original string is <code>null</code>.
*/
public Object parseProperties(String value) {
if (value == null || "".equals(value) || value.indexOf('$') == -1) {
if (value == null || "".equals(value)) {
return value;
}
ParsePosition pos = new ParsePosition(0);


Loading…
Cancel
Save