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
<get>'s quiet attribute is broken
https://bz.apache.org/bugzilla/show_bug.cgi?id=59379
master
Stefan Bodewig
9 years ago
parent
434193d088
commit
647bdfb2d7
2 changed files
with
4 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-0
WHATSNEW
+1
-1
src/main/org/apache/tools/ant/taskdefs/Get.java
+ 3
- 0
WHATSNEW
View File
@@ -12,6 +12,9 @@ Fixed bugs:
they have specified.
Bugzilla Report 59339
* <get>'s quiet attribute was broken, it didn't suppress any messages.
Bugzilla Report 59379
Other changes:
--------------
+ 1
- 1
src/main/org/apache/tools/ant/taskdefs/Get.java
View File
@@ -259,7 +259,7 @@ public class Get extends Task {
@Override
public void log(final String msg, final int msgLevel) {
if (!quiet || msgLevel
>
= Project.MSG_ERR) {
if (!quiet || msgLevel
<
= Project.MSG_ERR) {
super.log(msg, msgLevel);
}
}
Write
Preview
Loading…
Cancel
Save