1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-01 06:05:24 +02:00

[243611] Make the context type for GDBControlInitializedDMEvent and GDBControlShutdownDMEvent events, more generic.

This commit is contained in:
Pawel Piech 2008-08-18 17:23:34 +00:00
parent eeba5abcba
commit cd9ffceeef

View file

@ -80,7 +80,7 @@ public class GDBControl extends AbstractMIControl {
public static class GDBControlInitializedDMEvent extends AbstractDMEvent<ICommandControlDMContext>
implements ICommandControlInitializedDMEvent
{
public GDBControlInitializedDMEvent(GDBControlDMContext context) {
public GDBControlInitializedDMEvent(ICommandControlDMContext context) {
super(context);
}
}
@ -91,7 +91,7 @@ public class GDBControl extends AbstractMIControl {
public static class GDBControlShutdownDMEvent extends AbstractDMEvent<ICommandControlDMContext>
implements ICommandControlShutdownDMEvent
{
public GDBControlShutdownDMEvent(GDBControlDMContext context) {
public GDBControlShutdownDMEvent(ICommandControlDMContext context) {
super(context);
}
}