Browse Source

Allow the task type to be set from a differnet package. That elminate

the need to have RuntimeConfigurable2 in the same package.

PR:
Obtained from:
Submitted by:
Reviewed by:


git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@273243 13f79535-47bb-0310-9956-ffa450edef68
master
Costin Manolache 23 years ago
parent
commit
3964229159
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/main/org/apache/tools/ant/Task.java

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

@@ -169,7 +169,7 @@ public abstract class Task extends ProjectComponent {
* @param type The name the task has been invoked as.
* Should not be <code>null</code>.
*/
void setTaskType(String type) {
public void setTaskType(String type) {
this.taskType = type;
}



Loading…
Cancel
Save