Browse Source

overide -> override; writer -> file; fix line-breaks/spacing so

the output's a bit neater.


git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@272280 13f79535-47bb-0310-9956-ffa450edef68
master
Diane Holt 23 years ago
parent
commit
70b7bb1065
1 changed files with 1 additions and 4 deletions
  1. +1
    -4
      src/main/org/apache/tools/ant/taskdefs/Available.java

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

@@ -166,10 +166,7 @@ public class Available extends Task implements Condition {
if (eval()) {
String lSep = System.getProperty("line.separator");
if (null != project.getProperty(property)) {
log("DEPRECATED - <available> used to overide an existing property. "
+ lSep
+ " Build writer should not reuse the same property name for "
+ lSep + "different values.");
log("DEPRECATED - <available> used to override an existing property." + lSep + " Build file should not reuse the same property name for different values.");
}
this.project.setProperty(property, value);
}


Loading…
Cancel
Save