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:
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>
|
||||
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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue