From 9b46ff0d517c0c8e053c06fd707fb11e30569a7b Mon Sep 17 00:00:00 2001 From: relves Date: Fri, 8 Sep 2006 23:47:11 +0000 Subject: Progress on: 156271: Error on "Add Existing Task" if not authenticated https://bugs.eclipse.org/bugs/show_bug.cgi?id=156271 --- .../mylyn/internal/tasks/ui/wizards/CommonAddExistingTaskWizard.java | 1 + 1 file changed, 1 insertion(+) diff --git a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/wizards/CommonAddExistingTaskWizard.java b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/wizards/CommonAddExistingTaskWizard.java index 699e6bd23..6fc772583 100644 --- a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/wizards/CommonAddExistingTaskWizard.java +++ b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/wizards/CommonAddExistingTaskWizard.java @@ -75,6 +75,7 @@ public class CommonAddExistingTaskWizard extends Wizard { String message = e.getCause() != null ? e.getCause().getMessage() : "None provided"; MessageDialog.openWarning(this.getShell(), "Add Existing Task Failed", "Unable to retrieve existing task from repository, error was: \n\n" + message); + return false; } catch (InterruptedException e) { // cancelled return true; -- cgit v1.2.3