From eaf787aafc13126011e76f3a192621831829ab5c Mon Sep 17 00:00:00 2001 From: Matthew Jason Benson Date: Tue, 4 Jan 2005 22:26:15 +0000 Subject: [PATCH] Spelling git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@277278 13f79535-47bb-0310-9956-ffa450edef68 --- .../org/apache/tools/ant/types/mappers/FilterMapper.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/org/apache/tools/ant/types/mappers/FilterMapper.java b/src/main/org/apache/tools/ant/types/mappers/FilterMapper.java index fa2f1938f..70d9bcdf9 100644 --- a/src/main/org/apache/tools/ant/types/mappers/FilterMapper.java +++ b/src/main/org/apache/tools/ant/types/mappers/FilterMapper.java @@ -30,7 +30,7 @@ import org.apache.tools.ant.util.FileNameMapper; import org.apache.tools.ant.util.FileUtils; /** - * This is a filenamemaper based on a FilterChain. + * This is a FileNameMapper based on a FilterChain. */ public class FilterMapper extends FilterChain implements FileNameMapper { /** @@ -40,7 +40,7 @@ public class FilterMapper extends FilterChain implements FileNameMapper { */ public void setFrom(String from) { throw new UnsupportedAttributeException( - "filtermapper does'nt support the \"from\" attribute.", "from"); + "filtermapper doesn't support the \"from\" attribute.", "from"); } /** @@ -50,7 +50,7 @@ public class FilterMapper extends FilterChain implements FileNameMapper { */ public void setTo(String to) { throw new UnsupportedAttributeException( - "filtermapper does'nt support the \"to\" attribute.", "to"); + "filtermapper doesn't support the \"to\" attribute.", "to"); } /**