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: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]