Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfbecker2010-09-02 21:38:33 +0000
committerfbecker2010-09-02 21:38:33 +0000
commitc33e3f29c94d4702c25109485ed091ebdf8aa007 (patch)
tree2b7cd9bc3452c01ad931b5b16dc0a128a725ea32 /org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/wizard
parentc378122a262b1e3277e809dd500eac71804592fb (diff)
downloadorg.eclipse.mylyn.tasks-c33e3f29c94d4702c25109485ed091ebdf8aa007.tar.gz
org.eclipse.mylyn.tasks-c33e3f29c94d4702c25109485ed091ebdf8aa007.tar.xz
org.eclipse.mylyn.tasks-c33e3f29c94d4702c25109485ed091ebdf8aa007.zip
ASSIGNED - bug 322081: [patch] refactor Strings for Flags
https://bugs.eclipse.org/bugs/show_bug.cgi?id=322081
Diffstat (limited to 'org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/wizard')
-rw-r--r--org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/wizard/BugzillaAttachmentWizardPage.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/wizard/BugzillaAttachmentWizardPage.java b/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/wizard/BugzillaAttachmentWizardPage.java
index e5e96e58e..683e5135a 100644
--- a/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/wizard/BugzillaAttachmentWizardPage.java
+++ b/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/wizard/BugzillaAttachmentWizardPage.java
@@ -261,7 +261,7 @@ public class BugzillaAttachmentWizardPage extends WizardPage {
private void createAdvancedSection(final Composite container) {
boolean flagFound = false;
for (TaskAttribute attribute : attachmentAttribute.getAttributes().values()) {
- if (!attribute.getId().startsWith("task.common.kind.flag")) { //$NON-NLS-1$
+ if (!attribute.getId().startsWith(BugzillaAttribute.KIND_FLAG)) {
continue;
}
flagFound = true;
@@ -299,7 +299,7 @@ public class BugzillaAttachmentWizardPage extends WizardPage {
int currentFlagColumn = 1;
for (TaskAttribute attribute : attachmentAttribute.getAttributes().values()) {
- if (!attribute.getId().startsWith("task.common.kind.flag")) { //$NON-NLS-1$
+ if (!attribute.getId().startsWith(BugzillaAttribute.KIND_FLAG)) {
continue;
}
String type = attribute.getMetaData().getType();

Back to the top