Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Recoskie2009-12-01 01:10:52 +0000
committerChris Recoskie2009-12-01 01:10:52 +0000
commit9605f8c40bd8758c287dc1affeb1bab6e0563bff (patch)
tree4ec5384bfa8f8b07159b50ff501ca7be0df888d6
parent540116c6a6ae2913b93244f31f2dcb098534d18e (diff)
downloadorg.eclipse.cdt-9605f8c40bd8758c287dc1affeb1bab6e0563bff.tar.gz
org.eclipse.cdt-9605f8c40bd8758c287dc1affeb1bab6e0563bff.tar.xz
org.eclipse.cdt-9605f8c40bd8758c287dc1affeb1bab6e0563bff.zip
rolling back last fix for Bug 295117 - deadlock in CfgDiscoveredPathManager.getDiscoveredInfo()
-rw-r--r--core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/viewsupport/SelectionListenerWithASTManager.java8
1 files changed, 1 insertions, 7 deletions
diff --git a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/viewsupport/SelectionListenerWithASTManager.java b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/viewsupport/SelectionListenerWithASTManager.java
index 23a85606e6b..4c45c782719 100644
--- a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/viewsupport/SelectionListenerWithASTManager.java
+++ b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/viewsupport/SelectionListenerWithASTManager.java
@@ -57,13 +57,7 @@ public class SelectionListenerWithASTManager {
private static class SingletonRule implements ISchedulingRule {
public boolean contains(ISchedulingRule rule) {
- //if(rule instanceof SingletonRule) {
- return rule == this;
- /*}
-
- else {
- return true;
- }*/
+ return rule == this;
}
public boolean isConflicting(ISchedulingRule rule) {
return rule == this;

Back to the top