From 39642291594fb4fdea277b005e6b01db65949de3 Mon Sep 17 00:00:00 2001 From: Costin Manolache Date: Thu, 22 Aug 2002 17:32:21 +0000 Subject: [PATCH] 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 --- src/main/org/apache/tools/ant/Task.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/org/apache/tools/ant/Task.java b/src/main/org/apache/tools/ant/Task.java index 71cbe02e9..c12cb5c9d 100644 --- a/src/main/org/apache/tools/ant/Task.java +++ b/src/main/org/apache/tools/ant/Task.java @@ -169,7 +169,7 @@ public abstract class Task extends ProjectComponent { * @param type The name the task has been invoked as. * Should not be null. */ - void setTaskType(String type) { + public void setTaskType(String type) { this.taskType = type; }