mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-02 06:35:28 +02:00
Enabling the instantiation of the GDBProcesses_7_0 service.
This commit is contained in:
parent
2367a57c48
commit
4be124e46d
2 changed files with 6 additions and 6 deletions
|
@ -103,9 +103,9 @@ public class GdbDebugServicesFactory extends AbstractDsfDebugServicesFactory {
|
|||
|
||||
@Override
|
||||
protected IProcesses createProcessesService(DsfSession session) {
|
||||
// if (fVersion.startsWith("6.8.50.20080730")) { //$NON-NLS-1$
|
||||
// return new GDBProcesses_7_0(session);
|
||||
// }
|
||||
if (fVersion.startsWith("6.8.50.20080730")) { //$NON-NLS-1$
|
||||
return new GDBProcesses_7_0(session);
|
||||
}
|
||||
return new GDBProcesses(session);
|
||||
}
|
||||
|
||||
|
|
|
@ -23,9 +23,9 @@ public class GdbDebugServicesFactoryNS extends GdbDebugServicesFactory {
|
|||
|
||||
@Override
|
||||
protected IProcesses createProcessesService(DsfSession session) {
|
||||
// if (getVersion().startsWith("6.8.50.20080730")) { //$NON-NLS-1$
|
||||
// return new GDBProcesses_7_0(session);
|
||||
// }
|
||||
if (getVersion().startsWith("6.8.50.20080730")) { //$NON-NLS-1$
|
||||
return new GDBProcesses_7_0(session);
|
||||
}
|
||||
return new GDBProcesses(session);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue