You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by an...@apache.org on 2016/02/25 04:33:22 UTC

ant git commit: @Override annotation is not supported at build time by Java 1.5 for interface methods. Updating the STATUS file too.

Repository: ant
Updated Branches:
  refs/heads/master 327a811c0 -> 32634d817


@Override annotation is not supported at build time by Java 1.5 for interface methods.
Updating the STATUS file too.


Project: http://git-wip-us.apache.org/repos/asf/ant/repo
Commit: http://git-wip-us.apache.org/repos/asf/ant/commit/32634d81
Tree: http://git-wip-us.apache.org/repos/asf/ant/tree/32634d81
Diff: http://git-wip-us.apache.org/repos/asf/ant/diff/32634d81

Branch: refs/heads/master
Commit: 32634d817a7a03ebff6112e987f3beb0b05a650b
Parents: 327a811
Author: Antoine Levy-Lambert <an...@gmx.de>
Authored: Wed Feb 24 22:31:50 2016 -0500
Committer: Antoine Levy-Lambert <an...@gmx.de>
Committed: Wed Feb 24 22:31:50 2016 -0500

----------------------------------------------------------------------
 STATUS                                              | 6 +++---
 src/main/org/apache/tools/ant/taskdefs/Replace.java | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ant/blob/32634d81/STATUS
----------------------------------------------------------------------
diff --git a/STATUS b/STATUS
index 9bb904d..874396d 100644
--- a/STATUS
+++ b/STATUS
@@ -1,10 +1,10 @@
 Apache Ant Status
-Last modified at 2014-05-26
+Last modified at 2016-02-24
 
 Release:
-    Current:        1.9.4  (in GIT Tag: ANT_194)
+    Current:        1.9.6  (in GIT Tag: ANT_196)
     Maintenance:    1.9.x  (in GIT Branch: master)
-    Development:    1.9.5  (in GIT Branch: master)
+    Development:    1.9.7  (in GIT Branch: master)
 
 Assets:
     DNS:                ant.apache.org

http://git-wip-us.apache.org/repos/asf/ant/blob/32634d81/src/main/org/apache/tools/ant/taskdefs/Replace.java
----------------------------------------------------------------------
diff --git a/src/main/org/apache/tools/ant/taskdefs/Replace.java b/src/main/org/apache/tools/ant/taskdefs/Replace.java
index 2cf59dd..4b68198 100644
--- a/src/main/org/apache/tools/ant/taskdefs/Replace.java
+++ b/src/main/org/apache/tools/ant/taskdefs/Replace.java
@@ -962,7 +962,7 @@ public class Replace extends MatchingTask {
     private Iterator<Object> getOrderedIterator(Properties props) {
         List<Object> keys = new ArrayList<Object>(props.keySet());
         Collections.sort(keys, new Comparator<Object>() {
-                @Override
+                //Override annotation is not supported as long as we want to support building Ant on Java 1.5
                 public int compare(Object key1, Object key2) {
                     return compare(key1.toString(), key2.toString());
                 }