Merge "yang model: add service provider feature model"
authorIsaku Yamahata <isaku.yamahata@gmail.com>
Fri, 3 Mar 2017 03:40:34 +0000 (03:40 +0000)
committerGerrit Code Review <gerrit@opendaylight.org>
Fri, 3 Mar 2017 03:40:34 +0000 (03:40 +0000)
northbound-api/src/main/java/org/opendaylight/neutron/northbound/api/AbstractNeutronNorthbound.java

index 6382b9b23586b0cd1709ad4eba3d66a66113c5a9..cad9f32bff528145225684678e54d441346c59f3 100644 (file)
@@ -73,7 +73,6 @@ public abstract class AbstractNeutronNorthbound<T extends INeutronObject<T>, R e
     }
 
     protected I getNeutronCRUD() {
-        ParameterizedType parameterizedType = (ParameterizedType) getClass().getGenericSuperclass();
         // cls = I.class
         Class<I> cls = getActualTypeArgument(NEUTRON_CRUD_TYPE_INDEX);
         I neutronCrud = NeutronCRUDInterfaces.fetchINeutronCRUD(cls, (Object) this);