Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorspingel2008-04-07 22:58:20 +0000
committerspingel2008-04-07 22:58:20 +0000
commit356b2423befa22ca5568d70b8f6a4624457b8c2e (patch)
tree36d541e97bcf197d3deb5e75370ef84194e0b011 /org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/BugzillaAttachmentHandler.java
parentbbf034533d3c379f6d073044766cb78bcc3de16b (diff)
downloadorg.eclipse.mylyn.tasks-356b2423befa22ca5568d70b8f6a4624457b8c2e.tar.gz
org.eclipse.mylyn.tasks-356b2423befa22ca5568d70b8f6a4624457b8c2e.tar.xz
org.eclipse.mylyn.tasks-356b2423befa22ca5568d70b8f6a4624457b8c2e.zip
NEW - bug 225033: [api] ensure consistent naming of API classes and methods
https://bugs.eclipse.org/bugs/show_bug.cgi?id=225033
Diffstat (limited to 'org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/BugzillaAttachmentHandler.java')
-rw-r--r--org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/BugzillaAttachmentHandler.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/BugzillaAttachmentHandler.java b/org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/BugzillaAttachmentHandler.java
index cae2633c3..d1aae6cca 100644
--- a/org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/BugzillaAttachmentHandler.java
+++ b/org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/BugzillaAttachmentHandler.java
@@ -41,7 +41,7 @@ public class BugzillaAttachmentHandler extends AbstractAttachmentHandler {
return client.getAttachmentData(attachment.getId());
} catch (IOException e) {
throw new CoreException(new BugzillaStatus(Status.ERROR, BugzillaCorePlugin.PLUGIN_ID,
- RepositoryStatus.ERROR_IO, repository.getUrl(), e));
+ RepositoryStatus.ERROR_IO, repository.getRepositoryUrl(), e));
}
}
@@ -54,7 +54,7 @@ public class BugzillaAttachmentHandler extends AbstractAttachmentHandler {
client.postAttachment(bugId, comment, attachment);
} catch (IOException e) {
throw new CoreException(new BugzillaStatus(Status.ERROR, BugzillaCorePlugin.PLUGIN_ID,
- RepositoryStatus.ERROR_IO, repository.getUrl(), e));
+ RepositoryStatus.ERROR_IO, repository.getRepositoryUrl(), e));
}
}

Back to the top