(no commit message)
[utils] / system / general / src / test / java / org / wamblee / system / core / AbstractComponentTest.java
index 39d7dd61506d4ef23f048ffb11f211c3b9f83747..2fd48f6e4c08de37cb13d62aab3ddcb632db3f6c 100644 (file)
@@ -21,7 +21,7 @@ public class AbstractComponentTest extends TestCase {
 
        public void testNotAllInterfacesStarted() {
                try {
-                       Component component = new AbstractComponent("xx",
+                       Component<?> component = new AbstractComponent<Object>("xx",
                                        new ProvidedInterface[] { new DefaultProvidedInterface(
                                                        "xxx", String.class) }, new RequiredInterface[0]) {
                                @Override
@@ -45,7 +45,7 @@ public class AbstractComponentTest extends TestCase {
        
        public void testUnexpectedServicesStarted() { 
            try {
-            Component component = new AbstractComponent("xx",
+            Component<?> component = new AbstractComponent<Object>("xx",
                     new ProvidedInterface[0], new RequiredInterface[0]) {
                 @Override
                 protected Object doStart(Scope aScope) {