Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrelves2008-02-11 23:08:01 +0000
committerrelves2008-02-11 23:08:01 +0000
commit730975cc27a61b233cce77f8e0a97d8be2820761 (patch)
tree7ed90c3bdc9fd6a1506ca4205f3724c8fb7f91b3 /org.eclipse.mylyn.bugzilla.core
parent76fdbe44acc1c8a145562ac7fb75e334d7aa2fae (diff)
downloadorg.eclipse.mylyn.tasks-730975cc27a61b233cce77f8e0a97d8be2820761.tar.gz
org.eclipse.mylyn.tasks-730975cc27a61b233cce77f8e0a97d8be2820761.tar.xz
org.eclipse.mylyn.tasks-730975cc27a61b233cce77f8e0a97d8be2820761.zip
NEW - bug 214192: [api] provide common mapping for project component
https://bugs.eclipse.org/bugs/show_bug.cgi?id=214192
Diffstat (limited to 'org.eclipse.mylyn.bugzilla.core')
-rw-r--r--org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/BugzillaAttributeFactory.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/BugzillaAttributeFactory.java b/org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/BugzillaAttributeFactory.java
index bdfa97e3e..cf2674772 100644
--- a/org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/BugzillaAttributeFactory.java
+++ b/org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/BugzillaAttributeFactory.java
@@ -93,6 +93,8 @@ public class BugzillaAttributeFactory extends AbstractAttributeFactory {
return BugzillaReportElement.PRIORITY.getKeyString();
} else if (key.equals(RepositoryTaskAttribute.COMMENT_NEW)) {
return BugzillaReportElement.NEW_COMMENT.getKeyString();
+ } else if (key.equals(RepositoryTaskAttribute.COMPONENT)) {
+ return BugzillaReportElement.COMPONENT.getKeyString();
} else {
return key;
}

Back to the top