Return-Path: Delivered-To: apmail-ant-dev-archive@www.apache.org Received: (qmail 93233 invoked from network); 29 Nov 2005 12:08:29 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 29 Nov 2005 12:08:29 -0000 Received: (qmail 10508 invoked by uid 500); 29 Nov 2005 12:08:22 -0000 Delivered-To: apmail-ant-dev-archive@ant.apache.org Received: (qmail 10464 invoked by uid 500); 29 Nov 2005 12:08:21 -0000 Mailing-List: contact dev-help@ant.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Help: List-Post: List-Id: "Ant Developers List" Reply-To: "Ant Developers List" Delivered-To: mailing list dev@ant.apache.org Received: (qmail 10453 invoked by uid 500); 29 Nov 2005 12:08:21 -0000 Received: (qmail 10448 invoked by uid 99); 29 Nov 2005 12:08:21 -0000 X-ASF-Spam-Status: No, hits=-9.4 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.29) with SMTP; Tue, 29 Nov 2005 04:08:20 -0800 Received: (qmail 92912 invoked by uid 65534); 29 Nov 2005 12:07:57 -0000 Message-ID: <20051129120757.92906.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r349711 - /ant/core/trunk/src/main/org/apache/tools/ant/Project.java Date: Tue, 29 Nov 2005 12:07:56 -0000 To: ant-cvs@apache.org From: stevel@apache.org X-Mailer: svnmailer-1.0.5 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: stevel Date: Tue Nov 29 04:07:46 2005 New Revision: 349711 URL: http://svn.apache.org/viewcvs?rev=349711&view=rev Log: the bigger your project, the harder it is to track down bugs Modified: ant/core/trunk/src/main/org/apache/tools/ant/Project.java Modified: ant/core/trunk/src/main/org/apache/tools/ant/Project.java URL: http://svn.apache.org/viewcvs/ant/core/trunk/src/main/org/apache/tools/ant/Project.java?rev=349711&r1=349710&r2=349711&view=diff ============================================================================== --- ant/core/trunk/src/main/org/apache/tools/ant/Project.java (original) +++ ant/core/trunk/src/main/org/apache/tools/ant/Project.java Tue Nov 29 04:07:46 2005 @@ -1731,9 +1731,11 @@ // Make sure we exist if (target == null) { - StringBuffer sb = new StringBuffer("Target `"); + StringBuffer sb = new StringBuffer("Target \""); sb.append(root); - sb.append("' does not exist in this project. "); + sb.append("\" does not exist in the project \""); + sb.append(name); + sb.append("\". "); visiting.pop(); if (!visiting.empty()) { String parent = (String) visiting.peek(); @@ -2192,7 +2194,7 @@ } /** - * Resolve the file realtive to the project's basedir and return it as a + * Resolve the file realtive to the project's basedir and return it as a * FileResource. * @since Ant 1.7 */ --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@ant.apache.org For additional commands, e-mail: dev-help@ant.apache.org