From f3b8ace71177558949ee009e5cc7565af0fe8738 Mon Sep 17 00:00:00 2001 From: Jaikiran Pai Date: Fri, 9 Feb 2018 12:46:36 +0530 Subject: [PATCH] Fix previous commit - Java 5 doesn't allow @Override on implementation methods of an interface --- src/main/org/apache/tools/ant/util/IdentityMapper.java | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main/org/apache/tools/ant/util/IdentityMapper.java b/src/main/org/apache/tools/ant/util/IdentityMapper.java index 18a31e516..9bae6c2f5 100644 --- a/src/main/org/apache/tools/ant/util/IdentityMapper.java +++ b/src/main/org/apache/tools/ant/util/IdentityMapper.java @@ -46,7 +46,6 @@ public class IdentityMapper implements FileNameMapper { * @param sourceFileName the name to map. * @return the source filename in a one-element array. */ - @Override public String[] mapFileName(final String sourceFileName) { if (sourceFileName == null) { // The FileNameMapper#mapFileName contract states that: