Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteffen Pingel2011-10-14 20:42:43 +0000
committerSteffen Pingel2011-10-14 20:42:43 +0000
commit39b557b0fea24a89310d2493e44dc00b1a30c8c1 (patch)
tree8172052798cd938920efd488afe9e04c0569a98e /org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn
parentd900e33856efb753373526a67d804b33b88eb80a (diff)
downloadorg.eclipse.mylyn.tasks-39b557b0fea24a89310d2493e44dc00b1a30c8c1.tar.gz
org.eclipse.mylyn.tasks-39b557b0fea24a89310d2493e44dc00b1a30c8c1.tar.xz
org.eclipse.mylyn.tasks-39b557b0fea24a89310d2493e44dc00b1a30c8c1.zip
NEW - bug 360361: refreshing repository configuration does not reflect
added products https://bugs.eclipse.org/bugs/show_bug.cgi?id=360361 Change-Id: I246301bb0c9d689e86368e7c976e296d20e7c22b
Diffstat (limited to 'org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn')
-rw-r--r--org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/wizards/AbstractRepositoryQueryPage2.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/wizards/AbstractRepositoryQueryPage2.java b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/wizards/AbstractRepositoryQueryPage2.java
index db504e4d9..ffb8d9cb7 100644
--- a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/wizards/AbstractRepositoryQueryPage2.java
+++ b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/wizards/AbstractRepositoryQueryPage2.java
@@ -291,7 +291,7 @@ public abstract class AbstractRepositoryQueryPage2 extends AbstractRepositoryQue
}
protected boolean refreshConfiguration(final boolean force) {
- if (!hasRepositoryConfiguration() || force) {
+ if (force || !hasRepositoryConfiguration()) {
setErrorMessage(null);
try {
doRefreshConfiguration();

Back to the top