northbound: code clean up
[neutron.git] / northbound-api / src / main / java / org / opendaylight / neutron / northbound / api / NeutronSubnetsNorthbound.java
index 575ab926d920cf01275a9f5de9fb9d2ee7b76fd8..561c4ca10470c75530b20e82360a7e22e84f1120 100644 (file)
@@ -51,7 +51,7 @@ import org.opendaylight.neutron.spi.NeutronSubnet;
  */
 
 @Path("/subnets")
-public class NeutronSubnetsNorthbound
+public final class NeutronSubnetsNorthbound
         extends AbstractNeutronNorthbound<NeutronSubnet, NeutronSubnetRequest, INeutronSubnetCRUD> {
     private static final String RESOURCE_NAME = "Subnet";
 
@@ -80,11 +80,6 @@ public class NeutronSubnetsNorthbound
         return getNeutronInterfaces(false).getSubnetInterface();
     }
 
-    @Override
-    protected NeutronSubnetRequest newNeutronRequest(NeutronSubnet o) {
-        return new NeutronSubnetRequest(o);
-    }
-
     @Context
     UriInfo uriInfo;