1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-12 10:45:37 +02:00

Backed out my fix to 224463. Further investigation made me realize the problem is really a platform one. I've opened 224771.

This commit is contained in:
John Cortell 2008-03-29 16:59:10 +00:00
parent 301640c194
commit fa7e6e8363

View file

@ -727,14 +727,12 @@ public class CThread extends CDebugElement implements ICThread, IRestart, IResum
} }
else { else {
disposeStackFrames(); disposeStackFrames();
fireChangeEvent( DebugEvent.CONTENT );
} }
setCurrent( false ); setCurrent( false );
setState( state ); setState( state );
setCurrentStateInfo( null ); setCurrentStateInfo( null );
DebugEvent events[] = new DebugEvent[2]; fireResumeEvent( detail );
events[0] = createChangeEvent( DebugEvent.CONTENT );
events[1] = createResumeEvent( detail );
fireEventSet(events);
} }
private void handleEndSteppingRange( ICDIEndSteppingRange endSteppingRange ) { private void handleEndSteppingRange( ICDIEndSteppingRange endSteppingRange ) {