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/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