1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-08 10:16:03 +02:00

fixed bogus exception with older cdi debuggers.

This commit is contained in:
David Inglis 2004-11-02 03:34:28 +00:00
parent 46d6b8f8c1
commit 83261630e4
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2004-11-1 David Inglis
Fixed bogus exception with older CDI debuggers.
* src/org/eclipse/cdt/debug/internal/core/CDebugAdapter.java
2004-10-31 Alain Magloire
Refactor ICDIVariableObject --> ICDIVariableDescriptor
Refactor ICDIArgumentObject --> ICDIArgumentDescriptor

View file

@ -75,7 +75,7 @@ public class CDebugAdapter implements ICDIDebugger {
IProcess debuggerProcess = DebugPlugin.newProcess(launch, debugger, renderDebuggerProcessLabel());
launch.addProcess(debuggerProcess);
}
return session;
} catch (CDIException e) {
abort(e.getLocalizedMessage(), e, -1);
}