Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorspingel2008-10-17 03:11:33 +0000
committerspingel2008-10-17 03:11:33 +0000
commitc1a43c4a29e364c58960b56ee24d63a11ff59ce2 (patch)
tree1e2fe3edceaca7b000d30569319b360a01ad2112 /org.eclipse.mylyn.sandbox.ui/src/org/eclipse/mylyn/internal/sandbox
parentcbcf4326a12a106434d428a5ba4f58fa9fda052c (diff)
downloadorg.eclipse.mylyn.incubator-c1a43c4a29e364c58960b56ee24d63a11ff59ce2.tar.gz
org.eclipse.mylyn.incubator-c1a43c4a29e364c58960b56ee24d63a11ff59ce2.tar.xz
org.eclipse.mylyn.incubator-c1a43c4a29e364c58960b56ee24d63a11ff59ce2.zip
NEW - bug 237596: [sandbox] deadlock in SandboxUiPlugin.initializeHighlighters()
https://bugs.eclipse.org/bugs/show_bug.cgi?id=237596
Diffstat (limited to 'org.eclipse.mylyn.sandbox.ui/src/org/eclipse/mylyn/internal/sandbox')
-rw-r--r--org.eclipse.mylyn.sandbox.ui/src/org/eclipse/mylyn/internal/sandbox/ui/SandboxUiPlugin.java7
1 files changed, 6 insertions, 1 deletions
diff --git a/org.eclipse.mylyn.sandbox.ui/src/org/eclipse/mylyn/internal/sandbox/ui/SandboxUiPlugin.java b/org.eclipse.mylyn.sandbox.ui/src/org/eclipse/mylyn/internal/sandbox/ui/SandboxUiPlugin.java
index 0ae444c8..63431624 100644
--- a/org.eclipse.mylyn.sandbox.ui/src/org/eclipse/mylyn/internal/sandbox/ui/SandboxUiPlugin.java
+++ b/org.eclipse.mylyn.sandbox.ui/src/org/eclipse/mylyn/internal/sandbox/ui/SandboxUiPlugin.java
@@ -1,5 +1,5 @@
/*******************************************************************************
-* Copyright (c) 2004, 2008 Tasktop Technologies and others.
+ * Copyright (c) 2004, 2008 Tasktop Technologies and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -172,6 +172,11 @@ public class SandboxUiPlugin extends AbstractUIPlugin {
* @return null if not found
*/
public Highlighter getHighlighter(String name) {
+ // TODO 3.1 reenable when bug 237596 is fixed
+ if (true) {
+ return null;
+ }
+
if (highlighters == null) {
initializeHighlighters();
}

Back to the top