diff --git a/proposal/myrmidon/src/main/org/apache/tools/ant/Target.java b/proposal/myrmidon/src/main/org/apache/tools/ant/Target.java index a9fec5f0a..03ecd1138 100644 --- a/proposal/myrmidon/src/main/org/apache/tools/ant/Target.java +++ b/proposal/myrmidon/src/main/org/apache/tools/ant/Target.java @@ -18,7 +18,7 @@ import org.apache.myrmidon.api.TaskException; * @author James Davidson duncan@x180.com */ -public class Target implements TaskContainer +public class Target { private String ifCondition = ""; private String unlessCondition = ""; diff --git a/proposal/myrmidon/src/main/org/apache/tools/ant/TaskContainer.java b/proposal/myrmidon/src/main/org/apache/tools/ant/TaskContainer.java deleted file mode 100644 index 4b91c8e57..000000000 --- a/proposal/myrmidon/src/main/org/apache/tools/ant/TaskContainer.java +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Copyright (C) The Apache Software Foundation. All rights reserved. - * - * This software is published under the terms of the Apache Software License - * version 1.1, a copy of which has been included with this distribution in - * the LICENSE file. - */ -package org.apache.tools.ant; - -import org.apache.myrmidon.api.TaskException; - -/** - * Interface for objects which can contain tasks
- * - * It is recommended that implementations call {@link Task#perform perform} - * instead of {@link Task#execute execute} for the tasks they contain, as this - * method ensures that {@link BuildEvent BuildEvents} will be generated.
- * - * @author Conor MacNeill - */ -public interface TaskContainer -{ - /** - * Add a task to this task container - * - * @param task the task to be added to this container - */ - void addTask( Task task ) - throws TaskException; -} - diff --git a/proposal/myrmidon/src/todo/org/apache/tools/ant/Target.java b/proposal/myrmidon/src/todo/org/apache/tools/ant/Target.java index a9fec5f0a..03ecd1138 100644 --- a/proposal/myrmidon/src/todo/org/apache/tools/ant/Target.java +++ b/proposal/myrmidon/src/todo/org/apache/tools/ant/Target.java @@ -18,7 +18,7 @@ import org.apache.myrmidon.api.TaskException; * @author James Davidson duncan@x180.com */ -public class Target implements TaskContainer +public class Target { private String ifCondition = ""; private String unlessCondition = ""; diff --git a/proposal/myrmidon/src/todo/org/apache/tools/ant/TaskContainer.java b/proposal/myrmidon/src/todo/org/apache/tools/ant/TaskContainer.java deleted file mode 100644 index 4b91c8e57..000000000 --- a/proposal/myrmidon/src/todo/org/apache/tools/ant/TaskContainer.java +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Copyright (C) The Apache Software Foundation. All rights reserved. - * - * This software is published under the terms of the Apache Software License - * version 1.1, a copy of which has been included with this distribution in - * the LICENSE file. - */ -package org.apache.tools.ant; - -import org.apache.myrmidon.api.TaskException; - -/** - * Interface for objects which can contain tasks- * - * It is recommended that implementations call {@link Task#perform perform} - * instead of {@link Task#execute execute} for the tasks they contain, as this - * method ensures that {@link BuildEvent BuildEvents} will be generated.
- * - * @author Conor MacNeill - */ -public interface TaskContainer -{ - /** - * Add a task to this task container - * - * @param task the task to be added to this container - */ - void addTask( Task task ) - throws TaskException; -} -