Browse Source

Ups - have forgotten to delete some debug infos ...

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@489348 13f79535-47bb-0310-9956-ffa450edef68
master
Jan Materne 18 years ago
parent
commit
9959ba70bd
1 changed files with 0 additions and 3 deletions
  1. +0
    -3
      src/main/org/apache/tools/ant/taskdefs/condition/AntVersion.java

+ 0
- 3
src/main/org/apache/tools/ant/taskdefs/condition/AntVersion.java View File

@@ -49,9 +49,6 @@ public class AntVersion extends Task implements Condition {
public boolean eval() throws BuildException { public boolean eval() throws BuildException {
validate(); validate();
DeweyDecimal actual = getVersion(); DeweyDecimal actual = getVersion();
System.out.println("AntVersion::actual = " + actual);
if (null != atLeast) { if (null != atLeast) {
return actual.isGreaterThanOrEqual(new DeweyDecimal(atLeast)); return actual.isGreaterThanOrEqual(new DeweyDecimal(atLeast));
} }


Loading…
Cancel
Save