AbstractNeutronNorthbound: remove unused local variable 46/52446/1
authorIsaku Yamahata <isaku.yamahata@intel.com>
Wed, 1 Mar 2017 04:47:16 +0000 (20:47 -0800)
committerIsaku Yamahata <isaku.yamahata@intel.com>
Wed, 1 Mar 2017 04:47:16 +0000 (20:47 -0800)
remove unused local variable, parameterizedType, in
AbstractNeutronNorthbound.

Change-Id: I7b77750abb3455b39ff3eeb636f1b9cc255ca2a6
Signed-off-by: Isaku Yamahata <isaku.yamahata@intel.com>
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);