No need to import Context just for JavaDoc

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/chain/trunk@1496614 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/base/src/main/java/org/apache/commons/chain2/base/CopyCommand.java b/base/src/main/java/org/apache/commons/chain2/base/CopyCommand.java
index 5f27a28..579c6bc 100644
--- a/base/src/main/java/org/apache/commons/chain2/base/CopyCommand.java
+++ b/base/src/main/java/org/apache/commons/chain2/base/CopyCommand.java
@@ -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 @@
      * <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.