diff --git a/proposal/myrmidon/src/main/org/apache/tools/ant/Task.java b/proposal/myrmidon/src/main/org/apache/tools/ant/Task.java index 473cdb028..36b88cbf2 100644 --- a/proposal/myrmidon/src/main/org/apache/tools/ant/Task.java +++ b/proposal/myrmidon/src/main/org/apache/tools/ant/Task.java @@ -13,30 +13,6 @@ public abstract class Task extends ProjectComponent implements org.apache.myrmidon.api.Task { - /** - * Perform this task - */ - public final void perform() - throws TaskException - { - try - { - project.fireTaskStarted( this ); - execute(); - project.fireTaskFinished( this, null ); - } - catch( TaskException te ) - { - project.fireTaskFinished( this, te ); - throw te; - } - catch( RuntimeException re ) - { - project.fireTaskFinished( this, re ); - throw re; - } - } - /** * Called by the project to let the task do it's work. This method may be * called more than once, if the task is invoked more than once. For diff --git a/proposal/myrmidon/src/todo/org/apache/tools/ant/Task.java b/proposal/myrmidon/src/todo/org/apache/tools/ant/Task.java index 473cdb028..36b88cbf2 100644 --- a/proposal/myrmidon/src/todo/org/apache/tools/ant/Task.java +++ b/proposal/myrmidon/src/todo/org/apache/tools/ant/Task.java @@ -13,30 +13,6 @@ public abstract class Task extends ProjectComponent implements org.apache.myrmidon.api.Task { - /** - * Perform this task - */ - public final void perform() - throws TaskException - { - try - { - project.fireTaskStarted( this ); - execute(); - project.fireTaskFinished( this, null ); - } - catch( TaskException te ) - { - project.fireTaskFinished( this, te ); - throw te; - } - catch( RuntimeException re ) - { - project.fireTaskFinished( this, re ); - throw re; - } - } - /** * Called by the project to let the task do it's work. This method may be * called more than once, if the task is invoked more than once. For