Fix deprecation warnings and checkstyle in benchmarks
[controller.git] / benchmark / ntfbenchmark / src / main / java / ntfbenchmark / impl / NtfbenchTestListener.java
index cad1d359ea83079a54e4a46845dae1c29075c2a4..d126b2774ae35bdb240a7ce850f3ff51f707b3c6 100644 (file)
@@ -5,16 +5,13 @@
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
-
 package ntfbenchmark.impl;
 
+import com.google.common.util.concurrent.Futures;
 import java.util.concurrent.Future;
-
 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.ntfbench.payload.rev150709.Ntfbench;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.ntfbench.payload.rev150709.NtfbenchPayloadListener;
 
-import com.google.common.util.concurrent.Futures;
-
 public class NtfbenchTestListener implements NtfbenchPayloadListener {
 
     private final int expectedSize;
@@ -38,5 +35,4 @@ public class NtfbenchTestListener implements NtfbenchPayloadListener {
     public Future<?> getAllDone() {
         return Futures.immediateFuture(null);
     }
-
 }