Browse Source

whitespace only

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@426649 13f79535-47bb-0310-9956-ffa450edef68
master
Stefan Bodewig 19 years ago
parent
commit
d4b2ec4b55
1 changed files with 7 additions and 7 deletions
  1. +7
    -7
      src/main/org/apache/tools/ant/types/PropertySet.java

+ 7
- 7
src/main/org/apache/tools/ant/types/PropertySet.java View File

@@ -323,14 +323,14 @@ public class PropertySet extends DataType implements ResourceCollection {
if (value != null) {
// may be null if a system property has been added
// after the project instance has been initialized
if (m != null) {
//map the names
String[] newname = m.mapFileName(name);
if (newname != null) {
name = newname[0];
if (m != null) {
//map the names
String[] newname = m.mapFileName(name);
if (newname != null) {
name = newname[0];
}
}
}
properties.setProperty(name, value);
properties.setProperty(name, value);
}
}
return properties;


Loading…
Cancel
Save