adammurdoch 02/02/12 02:23:01
Modified:
proposal/myrmidon/src/java/org/apache/myrmidon/components/workspace
DefaultWorkspace.java
Log:
Fix error message, and some Javadoc problems.
Revision Changes Path
1.20 +7 -8
jakarta-ant/proposal/myrmidon/src/java/org/apache/myrmidon/components/workspace/DefaultWorkspace.java
Index: DefaultWorkspace.java
===================================================================
RCS file:
/home/cvs/jakarta-ant/proposal/myrmidon/src/java/org/apache/myrmidon/components/workspace/DefaultWorkspace.java,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- DefaultWorkspace.java 7 Feb 2002 13:02:20 -0000 1.19
+++ DefaultWorkspace.java 12 Feb 2002 10:23:01 -0000 1.20
@@ -45,7 +45,7 @@
* This is the default implementation of Workspace.
*
* @author <a href="mailto:[EMAIL PROTECTED]">Peter Donald</a>
- * @version $Revision: 1.19 $ $Date: 2002/02/07 13:02:20 $
+ * @version $Revision: 1.20 $ $Date: 2002/02/12 10:23:01 $
*/
public class DefaultWorkspace
extends AbstractLogEnabled
@@ -214,7 +214,7 @@
}
catch( final DeploymentException de )
{
- final String message = REZ.getString( "no-deploy.error",
typeLib, file );
+ final String message = REZ.getString( "no-deploy.error",
typeLib.getLibrary(), file );
throw new TaskException( message, de );
}
}
@@ -339,9 +339,8 @@
* Helper method to execute a target.
*
* @param project the Project
- * @param target the name of the target
- * @param context the context
- * @param done the list of targets already executed in current run
+ * @param targetName the name of the target
+ * @param entry the context
* @exception TaskException if an error occurs
*/
private void execute( final Project project,
@@ -395,9 +394,9 @@
/**
* Method to execute a particular target instance.
*
- * @param targetName the name of target
+ * @param name the name of target
* @param target the target
- * @param context the context in which to execute
+ * @param frame the frame in which to execute
* @exception TaskException if an error occurs
*/
private void executeTarget( final String name,
@@ -445,7 +444,7 @@
* Execute a task.
*
* @param task the task definition
- * @param context the context
+ * @param frame the frame to execute in
* @exception TaskException if an error occurs
*/
private void executeTask( final Configuration task, final ExecutionFrame
frame )
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>