You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by hi...@apache.org on 2012/07/30 23:09:07 UTC

svn commit: r1367299 - /ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/Definer.java

Author: hibou
Date: Mon Jul 30 21:09:07 2012
New Revision: 1367299

URL: http://svn.apache.org/viewvc?rev=1367299&view=rev
Log:
fix the ponctuation of the error message

Modified:
    ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/Definer.java

Modified: ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/Definer.java
URL: http://svn.apache.org/viewvc/ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/Definer.java?rev=1367299&r1=1367298&r2=1367299&view=diff
==============================================================================
--- ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/Definer.java (original)
+++ ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/Definer.java Mon Jul 30 21:09:07 2012
@@ -226,7 +226,7 @@ public abstract class Definer extends De
             } else {
                 throw new BuildException(
                         "Only antlib URIs can be located from the URI alone,"
-                                + "not the URI " + getURI());
+                                + " not the URI '" + getURI() + "'");
             }
         }