1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-24 09:25:31 +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 {
disposeStackFrames();
fireChangeEvent( DebugEvent.CONTENT );
}
setCurrent( false );
setState( state );
setCurrentStateInfo( null );
DebugEvent events[] = new DebugEvent[2];
events[0] = createChangeEvent( DebugEvent.CONTENT );
events[1] = createResumeEvent( detail );
fireEventSet(events);
fireResumeEvent( detail );
}
private void handleEndSteppingRange( ICDIEndSteppingRange endSteppingRange ) {