Adjust to yangtools-2.0.0 changes
[mdsal.git] / binding / yang-binding / src / test / java / org / opendaylight / yangtools / yang / binding / util / RpcMethodInvokerWithInputTest.java
index ecd167b43330582c7eca7929f609e5409c23434a..cbb592ea99d15ac10216a0d7d98b13d827c03ebb 100644 (file)
@@ -39,11 +39,11 @@ public class RpcMethodInvokerWithInputTest {
 
     private static final class TestImplClassWithInput implements RpcService {
 
-        static Future testMethod(RpcService testArg, DataObject data) {
+        static Future<?> testMethod(final RpcService testArg, final DataObject data) {
             return Futures.immediateFuture(null);
         }
 
-        static Future testMethodWithException(RpcService testArg, DataObject data) throws Exception {
+        static Future<?> testMethodWithException(final RpcService testArg, final DataObject data) throws Exception {
             throw new InternalError();
         }
     }