Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfbecker2011-06-19 18:05:59 +0000
committerfbecker2011-06-19 18:05:59 +0000
commitff0f703decea17ab1f594a3fb77916ec02546192 (patch)
tree6eeb8bbdb0da23cdefb7679ebf948814c036408b /org.eclipse.mylyn.bugzilla.ui
parentcd5ac74522082b60791daf8818e4802888858eaa (diff)
downloadorg.eclipse.mylyn.tasks-ff0f703decea17ab1f594a3fb77916ec02546192.tar.gz
org.eclipse.mylyn.tasks-ff0f703decea17ab1f594a3fb77916ec02546192.tar.xz
org.eclipse.mylyn.tasks-ff0f703decea17ab1f594a3fb77916ec02546192.zip
ASSIGNED - bug 349620: improve UI for showing private comments
https://bugs.eclipse.org/bugs/show_bug.cgi?id=349620 small fix for correct remove of partdescriptors
Diffstat (limited to 'org.eclipse.mylyn.bugzilla.ui')
-rw-r--r--org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/editor/BugzillaTaskEditorPage.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/editor/BugzillaTaskEditorPage.java b/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/editor/BugzillaTaskEditorPage.java
index 77f0f3c51..ea588ae6e 100644
--- a/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/editor/BugzillaTaskEditorPage.java
+++ b/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/editor/BugzillaTaskEditorPage.java
@@ -104,6 +104,8 @@ public class BugzillaTaskEditorPage extends AbstractTaskEditorPage {
descriptors.remove(taskEditorPartDescriptor);
break;
}
+ }
+ for (TaskEditorPartDescriptor taskEditorPartDescriptor : descriptors) {
if (taskEditorPartDescriptor.getId().equals(ID_PART_COMMENTS)) {
descriptors.remove(taskEditorPartDescriptor);
hasPartComments = true;

Back to the top