You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2008/04/10 19:51:33 UTC

svn commit: r646900 - /commons/sandbox/exec/trunk/src/main/java/org/apache/commons/exec/ProcessDestroyer.java

Author: sebb
Date: Thu Apr 10 10:51:32 2008
New Revision: 646900

URL: http://svn.apache.org/viewvc?rev=646900&view=rev
Log:
Javadoc errors

Modified:
    commons/sandbox/exec/trunk/src/main/java/org/apache/commons/exec/ProcessDestroyer.java

Modified: commons/sandbox/exec/trunk/src/main/java/org/apache/commons/exec/ProcessDestroyer.java
URL: http://svn.apache.org/viewvc/commons/sandbox/exec/trunk/src/main/java/org/apache/commons/exec/ProcessDestroyer.java?rev=646900&r1=646899&r2=646900&view=diff
==============================================================================
--- commons/sandbox/exec/trunk/src/main/java/org/apache/commons/exec/ProcessDestroyer.java (original)
+++ commons/sandbox/exec/trunk/src/main/java/org/apache/commons/exec/ProcessDestroyer.java Thu Apr 10 10:51:32 2008
@@ -27,26 +27,26 @@
 
 	/**
 	 * Returns <code>true</code> if the specified 
-	 * @link java.lang.Process was
+	 * {@link java.lang.Process} was
 	 * successfully added to the list of processes to be destroy.
 	 * 
 	 * @param process
 	 *      the process to add
 	 * @return <code>true</code> if the specified 
-	 * 		@link java.lang.Process was
+	 * 		{@link java.lang.Process} was
 	 *      successfully added
 	 */
 	boolean add(Process process);
 	
 	/**
 	 * Returns <code>true</code> if the specified 
-	 * @link java.lang.Process was
+	 * {@link java.lang.Process} was
 	 * successfully removed from the list of processes to be destroy.
 	 * 
 	 * @param process
 	 *            the process to remove
 	 * @return <code>true</code> if the specified 
-	 * 		@link java.lang.Process was
+	 * 		{@link java.lang.Process} was
 	 *      successfully removed
 	 */
 	boolean remove(Process process);