Fix checkstyle/findbugs violations in the toaster sample
[controller.git] / opendaylight / md-sal / samples / toaster-consumer / src / main / java / org / opendaylight / controller / sample / kitchen / api / KitchenService.java
index 469a0068a299a21d31be0df483b04b7294de6b56..b4c621797987a5e14da6b24cc238185f708d355f 100644 (file)
@@ -9,11 +9,9 @@
 package org.opendaylight.controller.sample.kitchen.api;
 
 import java.util.concurrent.Future;
 package org.opendaylight.controller.sample.kitchen.api;
 
 import java.util.concurrent.Future;
-
 import org.opendaylight.yang.gen.v1.http.netconfcentral.org.ns.toaster.rev091120.ToastType;
 import org.opendaylight.yangtools.yang.common.RpcResult;
 
 public interface KitchenService {
 import org.opendaylight.yang.gen.v1.http.netconfcentral.org.ns.toaster.rev091120.ToastType;
 import org.opendaylight.yangtools.yang.common.RpcResult;
 
 public interface KitchenService {
-    Future<RpcResult<Void>> makeBreakfast( EggsType eggs, Class<? extends ToastType> toast,
-                                           int toastDoneness );
+    Future<RpcResult<Void>> makeBreakfast(EggsType eggs, Class<? extends ToastType> toast, int toastDoneness);
 }
 }