Remove explicit default super-constructor calls
[controller.git] / opendaylight / md-sal / sal-binding-api / src / main / java / org / opendaylight / controller / sal / binding / api / rpc / RpcContextIdentifier.java
index e3bedd33f9a2307bf9e76437e48729765698c763..b4bd6eb6a7782af3aeeb98aec5f88aad3256b232 100644 (file)
@@ -17,7 +17,6 @@ public final  class RpcContextIdentifier implements Immutable{
     public final Class<? extends BaseIdentity> routingContext;
 
     private RpcContextIdentifier(Class<? extends RpcService> rpcService, Class<? extends BaseIdentity> routingContext) {
-        super();
         this.rpcService = rpcService;
         this.routingContext = routingContext;
     }