Browse Source

reallyput the value into the map.

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

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

@@ -214,7 +214,7 @@ public class ComponentHelper {
entryVal = new ArrayList(entryVal); entryVal = new ArrayList(entryVal);
} }
Object entryKey = entry.getKey(); Object entryKey = entry.getKey();
result.put(entryKey, entryKey);
result.put(entryKey, entryVal);
} }
} }
return result; return result;


Loading…
Cancel
Save