You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by br...@apache.org on 2013/06/25 21:48:56 UTC

svn commit: r1496614 - /commons/proper/chain/trunk/base/src/main/java/org/apache/commons/chain2/base/CopyCommand.java

Author: britter
Date: Tue Jun 25 19:48:55 2013
New Revision: 1496614

URL: http://svn.apache.org/r1496614
Log:
No need to import Context just for JavaDoc

Modified:
    commons/proper/chain/trunk/base/src/main/java/org/apache/commons/chain2/base/CopyCommand.java

Modified: commons/proper/chain/trunk/base/src/main/java/org/apache/commons/chain2/base/CopyCommand.java
URL: http://svn.apache.org/viewvc/commons/proper/chain/trunk/base/src/main/java/org/apache/commons/chain2/base/CopyCommand.java?rev=1496614&r1=1496613&r2=1496614&view=diff
==============================================================================
--- commons/proper/chain/trunk/base/src/main/java/org/apache/commons/chain2/base/CopyCommand.java (original)
+++ commons/proper/chain/trunk/base/src/main/java/org/apache/commons/chain2/base/CopyCommand.java Tue Jun 25 19:48:55 2013
@@ -16,11 +16,10 @@
  */
 package org.apache.commons.chain2.base;
 
-import org.apache.commons.chain2.Command;
-import org.apache.commons.chain2.Context;
-
 import java.util.Map;
 
+import org.apache.commons.chain2.Command;
+
 /**
  * <p>Copy a specified literal value, or a context attribute stored under
  * the <code>fromKey</code> (if any), to the <code>toKey</code>.</p>
@@ -79,7 +78,7 @@ public class CopyCommand<K, V, C extends
      * <p>Copy a specified literal value, or a context attribute stored under
      * the <code>fromKey</code> (if any), to the <code>toKey</code>.</p>
      *
-     * @param context {@link Context} in which we are operating
+     * @param context {@link org.apache.commons.chain2.Context Context} in which we are operating
      *
      * @return <code>false</code> so that processing will continue
      * @throws org.apache.commons.chain2.ChainException in the if an error occurs during execution.