Browse Source

fix the ponctuation of the error message

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@1367299 13f79535-47bb-0310-9956-ffa450edef68
master
Nicolas Lalevee 13 years ago
parent
commit
261050f72e
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/main/org/apache/tools/ant/taskdefs/Definer.java

+ 1
- 1
src/main/org/apache/tools/ant/taskdefs/Definer.java View File

@@ -226,7 +226,7 @@ public abstract class Definer extends DefBase {
} else {
throw new BuildException(
"Only antlib URIs can be located from the URI alone,"
+ "not the URI " + getURI());
+ " not the URI '" + getURI() + "'");
}
}



Loading…
Cancel
Save