Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'dsf/org.eclipse.cdt.examples.dsf.pda/src/org/eclipse/cdt/examples/dsf/pda/service/PDACommandControl.java')
-rw-r--r--dsf/org.eclipse.cdt.examples.dsf.pda/src/org/eclipse/cdt/examples/dsf/pda/service/PDACommandControl.java6
1 files changed, 5 insertions, 1 deletions
diff --git a/dsf/org.eclipse.cdt.examples.dsf.pda/src/org/eclipse/cdt/examples/dsf/pda/service/PDACommandControl.java b/dsf/org.eclipse.cdt.examples.dsf.pda/src/org/eclipse/cdt/examples/dsf/pda/service/PDACommandControl.java
index bfa653ba01a..5b6b394260b 100644
--- a/dsf/org.eclipse.cdt.examples.dsf.pda/src/org/eclipse/cdt/examples/dsf/pda/service/PDACommandControl.java
+++ b/dsf/org.eclipse.cdt.examples.dsf.pda/src/org/eclipse/cdt/examples/dsf/pda/service/PDACommandControl.java
@@ -155,7 +155,11 @@ public class PDACommandControl extends AbstractDsfService implements ICommandCon
// Register the service with OSGi as the last step in initialization of
// the service.
register(
- new String[]{ ICommandControl.class.getName(), PDACommandControl.class.getName() },
+ new String[] {
+ ICommandControl.class.getName(),
+ ICommandControlService.class.getName(),
+ PDACommandControl.class.getName()
+ },
new Hashtable<String,String>());
rm.done();

Back to the top