You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by jh...@apache.org on 2006/12/21 14:21:34 UTC

svn commit: r489348 - /ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/condition/AntVersion.java

Author: jhm
Date: Thu Dec 21 05:21:33 2006
New Revision: 489348

URL: http://svn.apache.org/viewvc?view=rev&rev=489348
Log:
Ups - have forgotten to delete some debug infos ...

Modified:
    ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/condition/AntVersion.java

Modified: ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/condition/AntVersion.java
URL: http://svn.apache.org/viewvc/ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/condition/AntVersion.java?view=diff&rev=489348&r1=489347&r2=489348
==============================================================================
--- ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/condition/AntVersion.java (original)
+++ ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/condition/AntVersion.java Thu Dec 21 05:21:33 2006
@@ -49,9 +49,6 @@
     public boolean eval() throws BuildException {
         validate();
         DeweyDecimal actual = getVersion();
-        
-        System.out.println("AntVersion::actual = " + actual);
-        
         if (null != atLeast) {
             return actual.isGreaterThanOrEqual(new DeweyDecimal(atLeast));
         }



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@ant.apache.org
For additional commands, e-mail: dev-help@ant.apache.org