Stefan Bodewig 9 years ago
parent
commit
647bdfb2d7
2 changed files with 4 additions and 1 deletions
  1. +3
    -0
      WHATSNEW
  2. +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);
}
}


Loading…
Cancel
Save