Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrelves2008-08-08 23:24:54 +0000
committerrelves2008-08-08 23:24:54 +0000
commitcd1cca2c93066b127bb33428e3d71b11530f9db1 (patch)
treed19490cde07486567491a7ceac60222fab2c7fec
parent42ee875b4ee5c1318718f7b3530937216500052c (diff)
downloadorg.eclipse.mylyn.tasks-cd1cca2c93066b127bb33428e3d71b11530f9db1.tar.gz
org.eclipse.mylyn.tasks-cd1cca2c93066b127bb33428e3d71b11530f9db1.tar.xz
org.eclipse.mylyn.tasks-cd1cca2c93066b127bb33428e3d71b11530f9db1.zip
NEW - bug 241752: no error displayed when updating attributes fails in new task dialog
https://bugs.eclipse.org/bugs/show_bug.cgi?id=241752
-rw-r--r--org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/BugzillaClient.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/BugzillaClient.java b/org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/BugzillaClient.java
index 60a930a0b..cd8b8ec1c 100644
--- a/org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/BugzillaClient.java
+++ b/org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/BugzillaClient.java
@@ -583,7 +583,7 @@ public class BugzillaClient {
repositoryConfiguration = configFactory.getConfiguration();
if (repositoryConfiguration != null) {
- if (!repositoryConfiguration.getStatusValues().isEmpty()) {
+ if (!repositoryConfiguration.getProducts().isEmpty()) {
repositoryConfiguration.setRepositoryUrl(repositoryUrl.toString());
return repositoryConfiguration;
} else {

Back to the top