Nothing that has been deprecated in Ant 1.1 should be left over now. git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@267921 13f79535-47bb-0310-9956-ffa450edef68master
| @@ -15,7 +15,8 @@ the filtering attribute. | |||||
| * Path and EnumeratedAttribute have been moved from | * Path and EnumeratedAttribute have been moved from | ||||
| org.apache.tools.ant to org.apache.tools.ant.types. | org.apache.tools.ant to org.apache.tools.ant.types. | ||||
| * the class attribute of <java> has been removed. | |||||
| * the class attributes of <available>, <java>, <rmic> and <taskdef> | |||||
| has been removed. | |||||
| * the src attribute of <chmod> has been removed. | * the src attribute of <chmod> has been removed. | ||||
| @@ -75,7 +75,7 @@ public class Available extends Task { | |||||
| this.property = property; | this.property = property; | ||||
| } | } | ||||
| public void setClass(String classname) { | |||||
| public void XsetClass(String classname) { | |||||
| log("The class attribute is deprecated. " + | log("The class attribute is deprecated. " + | ||||
| "Please use the classname attribute.", | "Please use the classname attribute.", | ||||
| Project.MSG_WARN); | Project.MSG_WARN); | ||||
| @@ -103,7 +103,7 @@ public class Rmic extends MatchingTask { | |||||
| this.base = base; | this.base = base; | ||||
| } | } | ||||
| public void setClass(String classname) { | |||||
| public void XsetClass(String classname) { | |||||
| log("The class attribute is deprecated. " + | log("The class attribute is deprecated. " + | ||||
| "Please use the classname attribute.", | "Please use the classname attribute.", | ||||
| Project.MSG_WARN); | Project.MSG_WARN); | ||||
| @@ -94,7 +94,7 @@ public class Taskdef extends Task { | |||||
| this.name = name; | this.name = name; | ||||
| } | } | ||||
| public void setClass(String v) { | |||||
| public void XsetClass(String v) { | |||||
| log("The class attribute is deprecated. " + | log("The class attribute is deprecated. " + | ||||
| "Please use the classname attribute.", | "Please use the classname attribute.", | ||||
| Project.MSG_WARN); | Project.MSG_WARN); | ||||