Return-Path: Delivered-To: apmail-ant-dev-archive@www.apache.org Received: (qmail 96923 invoked from network); 4 Sep 2003 13:00:03 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (208.185.179.12) by minotaur-2.apache.org with SMTP; 4 Sep 2003 13:00:03 -0000 Received: (qmail 29502 invoked by uid 500); 4 Sep 2003 12:58:13 -0000 Delivered-To: apmail-ant-dev-archive@ant.apache.org Received: (qmail 29468 invoked by uid 500); 4 Sep 2003 12:58:13 -0000 Mailing-List: contact dev-help@ant.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Ant Developers List" Reply-To: "Ant Developers List" Delivered-To: mailing list dev@ant.apache.org Received: (qmail 29360 invoked by uid 500); 4 Sep 2003 12:58:12 -0000 Received: (qmail 29289 invoked from network); 4 Sep 2003 12:58:10 -0000 Received: from unknown (HELO minotaur.apache.org) (209.237.227.194) by daedalus.apache.org with SMTP; 4 Sep 2003 12:58:10 -0000 Received: (qmail 52854 invoked by uid 1142); 4 Sep 2003 11:58:02 -0000 Date: 4 Sep 2003 11:58:02 -0000 Message-ID: <20030904115802.52853.qmail@minotaur.apache.org> From: conor@apache.org To: ant-cvs@apache.org Subject: cvs commit: ant/src/main/org/apache/tools/ant/taskdefs Manifest.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N conor 2003/09/04 04:58:02 Modified: src/main/org/apache/tools/ant/taskdefs Manifest.java Log: Make sure continuations of multi valued attributes (Class-Path) are added to the correct instance PR: 22816 Submitted by: Dan Douglas Revision Changes Path 1.47 +2 -0 ant/src/main/org/apache/tools/ant/taskdefs/Manifest.java Index: Manifest.java =================================================================== RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/Manifest.java,v retrieving revision 1.46 retrieving revision 1.47 diff -u -w -u -r1.46 -r1.47 --- Manifest.java 22 Jul 2003 00:19:15 -0000 1.46 +++ Manifest.java 4 Sep 2003 11:58:02 -0000 1.47 @@ -437,6 +437,8 @@ } else { attribute = new Attribute(line); String nameReadAhead = addAttributeAndCheck(attribute); + // refresh attribute in case of multivalued attributes. + attribute = getAttribute(attribute.getKey()); if (nameReadAhead != null) { return nameReadAhead; } --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@ant.apache.org For additional commands, e-mail: dev-help@ant.apache.org