Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrelves2006-07-12 20:08:30 +0000
committerrelves2006-07-12 20:08:30 +0000
commit3afdb7a3ae04999bc84ffba2a1cbb5dc7e66ab45 (patch)
tree77dc9b042a7048062cc1cc35e86c7c2061ca7fe7 /org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/AbstractReportFactory.java
parentb7ffdedc4ae6acdefc2317d2fed0e0ea50cd0160 (diff)
downloadorg.eclipse.mylyn.tasks-3afdb7a3ae04999bc84ffba2a1cbb5dc7e66ab45.tar.gz
org.eclipse.mylyn.tasks-3afdb7a3ae04999bc84ffba2a1cbb5dc7e66ab45.tar.xz
org.eclipse.mylyn.tasks-3afdb7a3ae04999bc84ffba2a1cbb5dc7e66ab45.zip
Progress on: 148205: Bugzilla connector polutting Eclipse logR_0_6_0_prerefactoring
https://bugs.eclipse.org/bugs/show_bug.cgi?id=148205
Diffstat (limited to 'org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/AbstractReportFactory.java')
-rw-r--r--org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/AbstractReportFactory.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/AbstractReportFactory.java b/org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/AbstractReportFactory.java
index a27bd08a8..cb226e6a2 100644
--- a/org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/AbstractReportFactory.java
+++ b/org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/AbstractReportFactory.java
@@ -54,7 +54,7 @@ public class AbstractReportFactory {
protected void collectResults(URL url, Proxy proxySettings, String characterEncoding,
DefaultHandler contentHandler, boolean clean) throws IOException, LoginException, KeyManagementException,
- NoSuchAlgorithmException {
+ NoSuchAlgorithmException, BugzillaException {
URLConnection cntx = BugzillaPlugin.getUrlConnection(url, proxySettings);
if (cntx == null || !(cntx instanceof HttpURLConnection)) {
throw new IOException("Could not form URLConnection.");
@@ -134,11 +134,11 @@ public class AbstractReportFactory {
}
}
} else if (connection.getContentType().contains(CONTENT_TYPE_TEXT_HTML)) {
- try {
+// try {
BugzillaRepositoryUtil.parseHtmlError(in);
- } catch (BugzillaException e) {
- throw new IOException(e.getMessage());
- }
+// } catch (BugzillaException e) {
+// throw new IOException(e.getMessage());
+// }
} else {
throw new IOException("Unrecognized content type: " + connection.getContentType());
}

Back to the top