Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/BugzillaClient.java')
-rw-r--r--org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/BugzillaClient.java9
1 files changed, 1 insertions, 8 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 4f2921f7e..06647e699 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
@@ -729,8 +729,6 @@ public class BugzillaClient {
throws IOException, CoreException {
GzipGetMethod method = null;
int attempt = 0;
- StatusHandler.log(new Status(IStatus.INFO, BugzillaCorePlugin.ID_PLUGIN,
- Messages.BugzillaClient_Start_GetConfiguration + repositoryUrl));
while (attempt < 2) {
try {
method = getConnectGzip(repositoryUrl + IBugzillaConstants.URL_GET_CONFIG_RDF, monitor, eTagValue);
@@ -750,7 +748,6 @@ public class BugzillaClient {
stream, getCharacterEncoding());
repositoryConfiguration = configFactory.getConfiguration();
- repositoryConfiguration.setRepositoryUrl(repositoryUrl.toExternalForm());
Header eTag = method.getResponseHeader("ETag"); //$NON-NLS-1$
if (eTag != null) {
repositoryConfiguration.setETagValue(eTag.getValue());
@@ -772,7 +769,7 @@ public class BugzillaClient {
getXmlRpcClient();
if (xmlRpcClient != null) {
xmlRpcClient.updateConfiguration(monitor, repositoryConfiguration,
- configParameters);
+ configParameters.get(IBugzillaConstants.BUGZILLA_DESCRIPTOR_FILE));
} else {
repositoryConfiguration.setValidTransitions(monitor,
configParameters.get(IBugzillaConstants.BUGZILLA_DESCRIPTOR_FILE), null);
@@ -782,8 +779,6 @@ public class BugzillaClient {
}
if (!repositoryConfiguration.getOptionValues(BugzillaAttribute.PRODUCT).isEmpty()) {
- StatusHandler.log(new Status(IStatus.INFO, BugzillaCorePlugin.ID_PLUGIN,
- Messages.BugzillaClient_Stop_GetConfiguration + repositoryUrl));
return repositoryConfiguration;
} else {
if (attempt == 0) {
@@ -814,8 +809,6 @@ public class BugzillaClient {
}
}
}
- StatusHandler.log(new Status(IStatus.INFO, BugzillaCorePlugin.ID_PLUGIN,
- Messages.BugzillaClient_Start_GetConfiguration + repositoryUrl));
return null;
}

Back to the top