Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorspingel2010-05-18 23:26:31 +0000
committerspingel2010-05-18 23:26:31 +0000
commit27593eac79246c5eb1607b10cb72b91075960986 (patch)
tree6dac681dcaee6d4767fa8896b5acb37e6a068d8d /org.eclipse.mylyn.tasks.core
parentb4be953a307164640c8be59d9f392046d0869ec6 (diff)
downloadorg.eclipse.mylyn.tasks-27593eac79246c5eb1607b10cb72b91075960986.tar.gz
org.eclipse.mylyn.tasks-27593eac79246c5eb1607b10cb72b91075960986.tar.xz
org.eclipse.mylyn.tasks-27593eac79246c5eb1607b10cb72b91075960986.zip
NEW - bug 267693: ClassCircularityError with Error Reports when crash on startup
https://bugs.eclipse.org/bugs/show_bug.cgi?id=267693
Diffstat (limited to 'org.eclipse.mylyn.tasks.core')
-rw-r--r--org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/core/TaskRepository.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/core/TaskRepository.java b/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/core/TaskRepository.java
index ea1118bcc..e578435c6 100644
--- a/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/core/TaskRepository.java
+++ b/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/core/TaskRepository.java
@@ -290,7 +290,7 @@ public final class TaskRepository extends PlatformObject {
}
}
- @SuppressWarnings( { "unchecked" })
+ @SuppressWarnings({ "unchecked" })
private Map<String, String> getAuthInfo() {
synchronized (LOCK) {
if (Platform.isRunning()) {
@@ -367,7 +367,7 @@ public final class TaskRepository extends PlatformObject {
}
} catch (CoreException e) {
// FIXME propagate exception?
- StatusHandler.fail(new Status(IStatus.ERROR, ITasksCoreConstants.ID_PLUGIN,
+ StatusHandler.log(new Status(IStatus.ERROR, ITasksCoreConstants.ID_PLUGIN,
"Could not flush authorization credentials", e)); //$NON-NLS-1$
}
}

Back to the top