1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Bug 338136: Don't show the inferior process in the debug view

This commit is contained in:
Marc Khouzam 2011-03-09 15:36:33 +00:00
parent 72a30d6b6c
commit d5d4f19105

View file

@ -157,7 +157,7 @@ public class ConsolePageParticipant implements IConsolePageParticipant, IDebugCo
if (launch != null) {
IProcess[] processes = launch.getProcesses();
if (processes != null && processes.length > 0) {
for (IProcess process : launch.getProcesses()) {
for (IProcess process : processes) {
if (process instanceof InferiorRuntimeProcess) {
String groupId = process.getAttribute(IGdbDebugConstants.INFERIOR_GROUPID_ATTR);