Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Wright2005-04-05 20:04:14 +0000
committerDarin Wright2005-04-05 20:04:14 +0000
commit801fa7db2e1e524823de4c20bd961fe040d88e6b (patch)
tree60a448c88460e0c348970cb3c497521ccea8309b
parent047614b2ec6ae0eb3e30ce97dd1a30fe48e92d2c (diff)
downloadeclipse.platform.debug-801fa7db2e1e524823de4c20bd961fe040d88e6b.tar.gz
eclipse.platform.debug-801fa7db2e1e524823de4c20bd961fe040d88e6b.tar.xz
eclipse.platform.debug-801fa7db2e1e524823de4c20bd961fe040d88e6b.zip
Bug 89936 - Breakpoint with "Suspend VM" doesn't show correct thread
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/RemoteTreeViewer.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/RemoteTreeViewer.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/RemoteTreeViewer.java
index b7631d7eb..7c4d5feed 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/RemoteTreeViewer.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/RemoteTreeViewer.java
@@ -409,7 +409,7 @@ public class RemoteTreeViewer extends TreeViewer {
Item item = currentChildren[pos];
Object data = item.getData();
if (!child.equals(data)) {
- validateDeferredUpdates(data);
+ // no need to cancel pending updates here, the child may have shifted up/down
internalRefresh(item, child, true, true);
}
} else {

Back to the top