From 3afdb7a3ae04999bc84ffba2a1cbb5dc7e66ab45 Mon Sep 17 00:00:00 2001 From: relves Date: Wed, 12 Jul 2006 20:08:30 +0000 Subject: Progress on: 148205: Bugzilla connector polutting Eclipse log https://bugs.eclipse.org/bugs/show_bug.cgi?id=148205 --- .../mylyn/internal/bugzilla/core/AbstractReportFactory.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/AbstractReportFactory.java') 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()); } -- cgit v1.2.3