Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Wright2007-04-27 20:09:09 +0000
committerDarin Wright2007-04-27 20:09:09 +0000
commit6407f5d68a6db9262f4f337b10b186579935cad4 (patch)
treedfa1be5449462aa747c4de276e8a6c3f93530737
parent9cbb8fca2ceed8b769ef7da3aed2e2fd8f290485 (diff)
downloadeclipse.jdt.debug-6407f5d68a6db9262f4f337b10b186579935cad4.tar.gz
eclipse.jdt.debug-6407f5d68a6db9262f4f337b10b186579935cad4.tar.xz
eclipse.jdt.debug-6407f5d68a6db9262f4f337b10b186579935cad4.zip
Bug 175708 [breakpoints] Debugger stops without feedback
-rw-r--r--org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/model/JDIThread.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/model/JDIThread.java b/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/model/JDIThread.java
index 7192b2b18..9a9166584 100644
--- a/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/model/JDIThread.java
+++ b/org.eclipse.jdt.debug/model/org/eclipse/jdt/internal/debug/core/model/JDIThread.java
@@ -1059,7 +1059,8 @@ public class JDIThread extends JDIDebugElement implements IJavaThread {
return suspend;
} catch (CoreException e) {
logError(e);
- return true;
+ setRunning(true);
+ return false;
}
}

Back to the top