Return-Path: Delivered-To: apmail-jakarta-commons-dev-archive@www.apache.org Received: (qmail 39505 invoked from network); 1 Sep 2004 17:49:22 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 1 Sep 2004 17:49:22 -0000 Received: (qmail 93599 invoked by uid 500); 1 Sep 2004 17:49:19 -0000 Delivered-To: apmail-jakarta-commons-dev-archive@jakarta.apache.org Received: (qmail 93498 invoked by uid 500); 1 Sep 2004 17:49:18 -0000 Mailing-List: contact commons-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Jakarta Commons Developers List" Reply-To: "Jakarta Commons Developers List" Delivered-To: mailing list commons-dev@jakarta.apache.org Received: (qmail 93485 invoked by uid 500); 1 Sep 2004 17:49:18 -0000 Received: (qmail 93482 invoked by uid 99); 1 Sep 2004 17:49:18 -0000 X-ASF-Spam-Status: No, hits=-2.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.28) with SMTP; Wed, 01 Sep 2004 10:49:17 -0700 Received: (qmail 39403 invoked by uid 1431); 1 Sep 2004 17:49:16 -0000 Date: 1 Sep 2004 17:49:16 -0000 Message-ID: <20040901174916.39402.qmail@minotaur.apache.org> From: dion@apache.org To: jakarta-commons-cvs@apache.org Subject: cvs commit: jakarta-commons/jelly/jelly-tags/ant/src/java/org/apache/commons/jelly/tags/ant AntTag.java X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N dion 2004/09/01 10:49:16 Modified: jelly/jelly-tags/ant/src/java/org/apache/commons/jelly/tags/ant AntTag.java Log: Fix for Jelly-105. After reading the Ant api docs, I can't see why nested elements need to have their name property set explicitly. Revision Changes Path 1.32 +6 -6 jakarta-commons/jelly/jelly-tags/ant/src/java/org/apache/commons/jelly/tags/ant/AntTag.java Index: AntTag.java =================================================================== RCS file: /home/cvs/jakarta-commons/jelly/jelly-tags/ant/src/java/org/apache/commons/jelly/tags/ant/AntTag.java,v retrieving revision 1.31 retrieving revision 1.32 diff -u -r1.31 -r1.32 --- AntTag.java 1 Sep 2004 17:33:28 -0000 1.31 +++ AntTag.java 1 Sep 2004 17:49:16 -0000 1.32 @@ -213,12 +213,12 @@ // TODO: work out why we always set the name attribute. // See JELLY-105. - try{ - PropertyUtils.setProperty( nested, "name", tagName ); - } - catch (Exception e) { - log.warn( "Caught exception setting nested name: " + tagName, e ); - } +// try{ +// PropertyUtils.setProperty( nested, "name", tagName ); +// } +// catch (Exception e) { +// log.warn( "Caught exception setting nested name: " + tagName, e ); +// } // now lets invoke the body String body = getBodyText(); --------------------------------------------------------------------- To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org For additional commands, e-mail: commons-dev-help@jakarta.apache.org