Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/core/data/TaskAttribute.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/core/data/TaskAttribute.java b/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/core/data/TaskAttribute.java
index dcea1d460..7e05c2101 100644
--- a/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/core/data/TaskAttribute.java
+++ b/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/core/data/TaskAttribute.java
@@ -583,10 +583,10 @@ public final class TaskAttribute {
/**
* Adds an attribute option value
*
- * @param readableValue
- * The value displayed on the screen
- * @param parameterValue
+ * @param key
* The option value used when sending the form to the server
+ * @param value
+ * The value displayed on the screen
*/
public void putOption(String key, String value) {
Assert.isNotNull(key);

Back to the top