Bump MRI upstreams
[openflowplugin.git] / openflowplugin-impl / src / main / java / org / opendaylight / openflowplugin / impl / services / AbstractVoidService.java
index 15ca0d1b9dfb26082e73831437e53d26ac75714f..4eb14a5ce77c14598ffddbb20b053b7a4daa3ca4 100644 (file)
@@ -1,4 +1,4 @@
-/**
+/*
  * Copyright (c) 2015 Cisco Systems, Inc. and others.  All rights reserved.
  *
  * This program and the accompanying materials are made available under the
@@ -12,15 +12,15 @@ import org.opendaylight.openflowplugin.api.openflow.device.DeviceContext;
 import org.opendaylight.openflowplugin.api.openflow.device.RequestContext;
 import org.opendaylight.openflowplugin.api.openflow.device.RequestContextStack;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.OfHeader;
-import org.opendaylight.yangtools.yang.binding.DataObject;
 
-public abstract class AbstractVoidService<T extends DataObject> extends AbstractService<T, Void> {
+public abstract class AbstractVoidService<T> extends AbstractService<T, Void> {
     protected AbstractVoidService(final RequestContextStack requestContextStack, final DeviceContext deviceContext) {
         super(requestContextStack, deviceContext);
     }
 
     @Override
-    protected final FutureCallback<OfHeader> createCallback(final RequestContext<Void> context, final Class<?> requestType) {
+    protected final FutureCallback<OfHeader> createCallback(final RequestContext<Void> context,
+                                                            final Class<?> requestType) {
         return new VoidRequestCallback(context, requestType, getMessageSpy());
     }
 }