Return-Path: Delivered-To: apmail-jakarta-commons-dev-archive@www.apache.org Received: (qmail 58221 invoked from network); 9 May 2004 18:25:02 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (208.185.179.12) by minotaur-2.apache.org with SMTP; 9 May 2004 18:25:02 -0000 Received: (qmail 19710 invoked by uid 500); 9 May 2004 18:24:50 -0000 Delivered-To: apmail-jakarta-commons-dev-archive@jakarta.apache.org Received: (qmail 19385 invoked by uid 500); 9 May 2004 18:24:48 -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 19371 invoked by uid 500); 9 May 2004 18:24:48 -0000 Received: (qmail 19367 invoked from network); 9 May 2004 18:24:48 -0000 Received: from unknown (HELO minotaur.apache.org) (209.237.227.194) by daedalus.apache.org with SMTP; 9 May 2004 18:24:48 -0000 Received: (qmail 58188 invoked by uid 1449); 9 May 2004 18:24:57 -0000 Date: 9 May 2004 18:24:57 -0000 Message-ID: <20040509182457.58187.qmail@minotaur.apache.org> From: leosutic@apache.org To: jakarta-commons-sandbox-cvs@apache.org Subject: cvs commit: jakarta-commons-sandbox/attributes/api/src/java/org/apache/commons/attributes InvalidAttributeTargetError.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 leosutic 2004/05/09 11:24:57 Modified: attributes maven.xml project.xml attributes/api/src/java/org/apache/commons/attributes InvalidAttributeTargetError.java Log: Fixed the message in InvalidAttributeTargetError. Fixed Javadocs build. Revision Changes Path 1.15 +1 -1 jakarta-commons-sandbox/attributes/maven.xml Index: maven.xml =================================================================== RCS file: /home/cvs/jakarta-commons-sandbox/attributes/maven.xml,v retrieving revision 1.14 retrieving revision 1.15 diff -u -r1.14 -r1.15 --- maven.xml 8 May 2004 20:37:22 -0000 1.14 +++ maven.xml 9 May 2004 18:24:57 -0000 1.15 @@ -175,7 +175,7 @@ windowtitle="${title}" bottom="${copyright}" additionalparam="-J-Xmx128m " - packagenames="*,org.*" + packagenames="org.apache.commons.attributes,org.apache.commons.attributes.validation" overview="${basedir}/../api/src/java/overview.html"> 1.17 +2 -2 jakarta-commons-sandbox/attributes/project.xml Index: project.xml =================================================================== RCS file: /home/cvs/jakarta-commons-sandbox/attributes/project.xml,v retrieving revision 1.16 retrieving revision 1.17 diff -u -r1.16 -r1.17 --- project.xml 8 May 2004 20:37:22 -0000 1.16 +++ project.xml 9 May 2004 18:24:57 -0000 1.17 @@ -171,8 +171,8 @@ org.apache.commons.attributes - Compiler and Tools - org.apache.commons.attributes.compiler,org.apache.commons.attributes.javadoc,org.apache.commons.attributes.validation + Compiler and Tools API + org.apache.commons.attributes.validation 1.3 +1 -1 jakarta-commons-sandbox/attributes/api/src/java/org/apache/commons/attributes/InvalidAttributeTargetError.java Index: InvalidAttributeTargetError.java =================================================================== RCS file: /home/cvs/jakarta-commons-sandbox/attributes/api/src/java/org/apache/commons/attributes/InvalidAttributeTargetError.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- InvalidAttributeTargetError.java 9 May 2004 17:58:38 -0000 1.2 +++ InvalidAttributeTargetError.java 9 May 2004 18:24:57 -0000 1.3 @@ -56,7 +56,7 @@ StringBuffer sb = new StringBuffer (); for (int i = 0; i < targetNames.size (); i++) { sb.append (targetNames.get (i)); - if (i < targetNames.size ()) { + if (i < targetNames.size () - 1) { sb.append (" | "); } } --------------------------------------------------------------------- To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org For additional commands, e-mail: commons-dev-help@jakarta.apache.org