1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-28 03:15:33 +02:00

Do not use the cache stackframe.

* src/org/eclipse/cdt/debug/internal/core/model/CThread.java
This commit is contained in:
Alain Magloire 2004-06-30 02:24:37 +00:00
parent 1b5eec7318
commit 8589466f8a
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2004-06-29 Alain Magloire
Do not use the cache stackframe.
* src/org/eclipse/cdt/debug/internal/core/model/CThread.java
2004-06-29 Mikhail Khodjaiants
Temporary fix for bug 68915: Invalid values in the Variables view.
* CStackFrame.java

View file

@ -1011,7 +1011,7 @@ public class CThread extends CDebugElement
*/
public void switchToFrame( IStackFrame frame ) throws DebugException
{
if ( frame == null || !(frame instanceof CStackFrame) || frame.equals( getLastStackFrame() ) )
if ( frame == null || !(frame instanceof CStackFrame) /*|| frame.equals( getLastStackFrame() )*/ )
{
return;
}