Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrelves2009-06-08 16:50:46 +0000
committerrelves2009-06-08 16:50:46 +0000
commit245eb782cf942c789dcff76d10d18fe773f8a49b (patch)
tree9c0b1e7d5664e2097fcf212419325ca3d246c788 /org.eclipse.mylyn.bugzilla.ui
parent7dcf83de3d2402279ba15531f9b02b536e63b041 (diff)
downloadorg.eclipse.mylyn.tasks-245eb782cf942c789dcff76d10d18fe773f8a49b.tar.gz
org.eclipse.mylyn.tasks-245eb782cf942c789dcff76d10d18fe773f8a49b.tar.xz
org.eclipse.mylyn.tasks-245eb782cf942c789dcff76d10d18fe773f8a49b.zip
NEW - bug 279493: fix potential infinite loop
https://bugs.eclipse.org/bugs/show_bug.cgi?id=279493
Diffstat (limited to 'org.eclipse.mylyn.bugzilla.ui')
-rw-r--r--org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/search/BugzillaSearchPage.java3
1 files changed, 0 insertions, 3 deletions
diff --git a/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/search/BugzillaSearchPage.java b/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/search/BugzillaSearchPage.java
index 719aa056c..d1f7cc5fd 100644
--- a/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/search/BugzillaSearchPage.java
+++ b/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/search/BugzillaSearchPage.java
@@ -1374,9 +1374,6 @@ public class BugzillaSearchPage extends AbstractRepositoryQueryPage implements L
}
private void updateAttributesFromConfiguration(String[] selectedProducts) {
- if (repositoryConfiguration == null) {
- updateConfiguration(false);
- }
if (repositoryConfiguration != null) {
String[] saved_product = product.getSelection();
String[] saved_component = component.getSelection();

Back to the top