Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/core/AttributeContainer.java')
-rw-r--r--org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/core/AttributeContainer.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/core/AttributeContainer.java b/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/core/AttributeContainer.java
index 0d3a2a2b8..5659a7f29 100644
--- a/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/core/AttributeContainer.java
+++ b/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/core/AttributeContainer.java
@@ -53,7 +53,7 @@ public class AttributeContainer implements Serializable {
}
String mapped = attributeFactory.mapCommonAttributeKey(key);
if (mapped == null) {
- StatusHandler.log("Mylar Error: mapped value for " + key + " returned null.", this);
+ StatusHandler.log("Mapped value for " + key + " returned null.", this);
return;
}
if (!attributes.containsKey(mapped)) {

Back to the top