This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
Register
Sign In
youys
/
ant
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
1
Code
Releases
0
Wiki
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
Browse Source
Merge branch '1.9.x'
master
Stefan Bodewig
9 years ago
parent
abdaa58453
03481a6b0c
commit
f6e6c20a89
2 changed files
with
6 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+5
-0
WHATSNEW
+1
-1
src/main/org/apache/tools/ant/taskdefs/MacroInstance.java
+ 5
- 0
WHATSNEW
View File
@@ -13,6 +13,11 @@ Changes that could break older environments:
Fixed bugs:
-----------
* setDynamicAttribute on MacroInstance now lower-cases the attribute
name in order to allow users of the API to use the attributes names
they have specified.
Bugzilla Report 59339
Other changes:
--------------
+ 1
- 1
src/main/org/apache/tools/ant/taskdefs/MacroInstance.java
View File
@@ -81,7 +81,7 @@ public class MacroInstance extends Task implements DynamicAttribute, TaskContain
* @param value the value of the attribute
*/
public void setDynamicAttribute(String name, String value) {
map.put(name, value);
map.put(name
.toLowerCase(Locale.ENGLISH)
, value);
}
/**
Write
Preview
Loading…
Cancel
Save