From 23b5b9d2ca3e35f969fa33bbcdfe55f583024c20 Mon Sep 17 00:00:00 2001 From: Stefan Bodewig Date: Fri, 20 Sep 2002 06:29:35 +0000 Subject: [PATCH] This looks like duplicate code, I'm not 100% sure, waiting to see whether it affects any Gump run. It causes problems with custom tasks that have nested Sequential child elements. git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@273331 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/org/apache/tools/ant/UnknownElement.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/org/apache/tools/ant/UnknownElement.java b/src/main/org/apache/tools/ant/UnknownElement.java index 35fcf683d..b87434427 100644 --- a/src/main/org/apache/tools/ant/UnknownElement.java +++ b/src/main/org/apache/tools/ant/UnknownElement.java @@ -219,9 +219,9 @@ public class UnknownElement extends Task { child.handleChildren(realChild, childWrapper); - if (parent instanceof TaskContainer) { - ((Task) realChild).maybeConfigure(); - } +// if (parent instanceof TaskContainer) { +// ((Task) realChild).maybeConfigure(); +// } } }