Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormkersten2005-11-10 01:23:18 +0000
committermkersten2005-11-10 01:23:18 +0000
commit03ee963ecd33337f95a114e91e1b65a7d9e3ef22 (patch)
treeb60e2be265eb64e9903eb1113850f873744c0791
parentd0284ae1b2b41d890cd70e31a403b1b50c307748 (diff)
downloadorg.eclipse.mylyn.tasks-03ee963ecd33337f95a114e91e1b65a7d9e3ef22.tar.gz
org.eclipse.mylyn.tasks-03ee963ecd33337f95a114e91e1b65a7d9e3ef22.tar.xz
org.eclipse.mylyn.tasks-03ee963ecd33337f95a114e91e1b65a7d9e3ef22.zip
*** empty log message ***
-rw-r--r--org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/bugzilla/ui/tasklist/BugzillaTask.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/bugzilla/ui/tasklist/BugzillaTask.java b/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/bugzilla/ui/tasklist/BugzillaTask.java
index bee3f6b45..e870bb7b7 100644
--- a/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/bugzilla/ui/tasklist/BugzillaTask.java
+++ b/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/bugzilla/ui/tasklist/BugzillaTask.java
@@ -416,7 +416,9 @@ public class BugzillaTask extends Task {
} catch (Exception e) {
MylarPlugin.fail(e, "Could not download report", false);
}
- BugzillaUiPlugin.getDefault().getBugzillaRefreshManager().removeRefreshingTask(BugzillaTask.this);
+ if (BugzillaUiPlugin.getDefault() != null) {
+ BugzillaUiPlugin.getDefault().getBugzillaRefreshManager().removeRefreshingTask(BugzillaTask.this);
+ }
return new Status(IStatus.OK, MylarPlugin.IDENTIFIER, IStatus.OK, "", null);
}
}

Back to the top