Mercurial > public > ssdtant
changeset 1:82fc5e17cc59
clean up task messages
author | smith@nwoca.org |
---|---|
date | Sat, 16 Apr 2011 16:22:27 -0400 |
parents | 1918a6aed50a |
children | 09f9f3d5c507 |
files | src/org/ssdt_ohio/tools/ant/AddDependencyTask.java |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/src/org/ssdt_ohio/tools/ant/AddDependencyTask.java Sat Apr 16 16:06:16 2011 -0400 +++ b/src/org/ssdt_ohio/tools/ant/AddDependencyTask.java Sat Apr 16 16:22:27 2011 -0400 @@ -15,16 +15,16 @@ @Override public void execute() throws BuildException { if (target == null) { - throw new BuildException("target attribute is required"); + throw new BuildException("'target' attribute is required"); } if (depends == null) { - throw new BuildException("depends attribute is required"); + throw new BuildException("'depends' attribute is required"); } Target t = (Target) getProject().getTargets().get(target); if (t.dependsOn(depends)) { - log(target +" already depends on " + depends, Project.MSG_VERBOSE); + log(target + " already depends on " + depends, Project.MSG_VERBOSE); } else { log("Adding \"" + depends + "\" dependency to \"" + target + "\"", Project.MSG_VERBOSE);