# HG changeset patch # User smith@nwoca.org # Date 1302985347 14400 # Node ID 82fc5e17cc59d9c777f404b045861bb54861a099 # Parent 1918a6aed50a2051965a0e85f2de9b1d8e58e81d clean up task messages diff -r 1918a6aed50a -r 82fc5e17cc59 src/org/ssdt_ohio/tools/ant/AddDependencyTask.java --- 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);