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

Small fix to avoid showing an pid of 0 in the debug view when only running one process

This commit is contained in:
Marc Khouzam 2008-08-17 19:14:36 +00:00
parent c26e38fedc
commit 518693304f

View file

@ -300,7 +300,8 @@ public class MIProcesses extends AbstractDsfService implements IMIProcesses {
private CommandCache fContainerCommandCache;
private static final String FAKE_THREAD_ID = "0"; //$NON-NLS-1$
private static final String UNIQUE_GROUP_ID = "0"; //$NON-NLS-1$
// The unique id should be an empty string so that the views know not to display the fake id
private static final String UNIQUE_GROUP_ID = ""; //$NON-NLS-1$
public MIProcesses(DsfSession session) {
super(session);