mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-16 21:45:22 +02:00
[243611] Make the context type for GDBControlInitializedDMEvent and GDBControlShutdownDMEvent events, more generic.
This commit is contained in:
parent
eeba5abcba
commit
cd9ffceeef
1 changed files with 2 additions and 2 deletions
|
@ -80,7 +80,7 @@ public class GDBControl extends AbstractMIControl {
|
||||||
public static class GDBControlInitializedDMEvent extends AbstractDMEvent<ICommandControlDMContext>
|
public static class GDBControlInitializedDMEvent extends AbstractDMEvent<ICommandControlDMContext>
|
||||||
implements ICommandControlInitializedDMEvent
|
implements ICommandControlInitializedDMEvent
|
||||||
{
|
{
|
||||||
public GDBControlInitializedDMEvent(GDBControlDMContext context) {
|
public GDBControlInitializedDMEvent(ICommandControlDMContext context) {
|
||||||
super(context);
|
super(context);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -91,7 +91,7 @@ public class GDBControl extends AbstractMIControl {
|
||||||
public static class GDBControlShutdownDMEvent extends AbstractDMEvent<ICommandControlDMContext>
|
public static class GDBControlShutdownDMEvent extends AbstractDMEvent<ICommandControlDMContext>
|
||||||
implements ICommandControlShutdownDMEvent
|
implements ICommandControlShutdownDMEvent
|
||||||
{
|
{
|
||||||
public GDBControlShutdownDMEvent(GDBControlDMContext context) {
|
public GDBControlShutdownDMEvent(ICommandControlDMContext context) {
|
||||||
super(context);
|
super(context);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue