Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormkersten2006-10-16 01:22:40 +0000
committermkersten2006-10-16 01:22:40 +0000
commitc642b2de6f7ad5a2876e545da405d13f13ab3ca2 (patch)
tree9e14a5a4d3d467913025cb8fc42cf105344b0ba1 /org.eclipse.mylyn.bugzilla.core
parent4799c2a86b0a0bd7445e14078961e7dbdadcacba (diff)
downloadorg.eclipse.mylyn.tasks-c642b2de6f7ad5a2876e545da405d13f13ab3ca2.tar.gz
org.eclipse.mylyn.tasks-c642b2de6f7ad5a2876e545da405d13f13ab3ca2.tar.xz
org.eclipse.mylyn.tasks-c642b2de6f7ad5a2876e545da405d13f13ab3ca2.zip
Progress on: automatic test suite fails on 3.3M2
https://bugs.eclipse.org/bugs/show_bug.cgi?id=160516
Diffstat (limited to 'org.eclipse.mylyn.bugzilla.core')
-rw-r--r--org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/BugzillaRepositoryConnector.java18
1 files changed, 5 insertions, 13 deletions
diff --git a/org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/BugzillaRepositoryConnector.java b/org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/BugzillaRepositoryConnector.java
index ec5b2f7aa..4cad9be4a 100644
--- a/org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/BugzillaRepositoryConnector.java
+++ b/org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/BugzillaRepositoryConnector.java
@@ -207,20 +207,12 @@ public class BugzillaRepositoryConnector extends AbstractRepositoryConnector {
// TODO: implement once this is consistent with offline task data
}
- // @Override
- // public boolean validate(TaskRepository repository) {
- // return repository != null;
- // if (!repository.hasCredentials()) {
- // MessageDialog.openInformation(PlatformUI.getWorkbench().getActiveWorkbenchWindow().getShell(),
- // TasksUiPlugin.TITLE_DIALOG, "Repository missing or does not have
- // credentials set, verify via "
- // + TaskRepositoriesView.NAME + ".");
- // return false;
- // }
- // return true;
- // }
-
public void setForceSynchExecForTesting(boolean forceSynchExecForTesting) {
this.forceSynchExecForTesting = forceSynchExecForTesting;
}
+
+ @Override
+ public String getTaskPrefix() {
+ return "bug";
+ }
}

Back to the top