From 79b4ed70c6e6107521c270b0e6c16c708447646e Mon Sep 17 00:00:00 2001 From: Magesh Umasankar Date: Sun, 24 Feb 2002 03:36:44 +0000 Subject: [PATCH] type is more appropriate than name in this case. git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@271525 13f79535-47bb-0310-9956-ffa450edef68 --- .../apache/tools/ant/filters/StripLineComments.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/proposal/sandbox/filterreaders/src/main/org/apache/tools/ant/filters/StripLineComments.java b/proposal/sandbox/filterreaders/src/main/org/apache/tools/ant/filters/StripLineComments.java index f200d54d2..95bb3c43c 100644 --- a/proposal/sandbox/filterreaders/src/main/org/apache/tools/ant/filters/StripLineComments.java +++ b/proposal/sandbox/filterreaders/src/main/org/apache/tools/ant/filters/StripLineComments.java @@ -15,11 +15,11 @@ import org.apache.tools.ant.types.Parameterizable; * ======= * * - * - * - * - * - * + * + * + * + * + * * * * @author Magesh Umasankar @@ -126,7 +126,7 @@ public final class StripLineComments private final void initialize() { if (parameters != null) { for (int i = 0; i < parameters.length; i++) { - if (COMMENTS_KEY.equals(parameters[i].getName())) { + if (COMMENTS_KEY.equals(parameters[i].getType())) { comments.addElement(parameters[i].getValue()); } }