Fix warnings in sal-akka-raft test classes
[controller.git] / opendaylight / md-sal / sal-akka-raft / src / test / java / org / opendaylight / controller / cluster / raft / AbstractActorTest.java
index 62e2ebd20b75de58b1c343dfc10786fd1588b3c7..d16e5efaa003eab5077f713da0124ed444d9093a 100644 (file)
@@ -10,12 +10,12 @@ package org.opendaylight.controller.cluster.raft;
 
 import akka.actor.ActorSystem;
 import akka.testkit.JavaTestKit;
+import java.io.File;
+import java.io.IOException;
 import org.apache.commons.io.FileUtils;
 import org.junit.AfterClass;
 import org.junit.BeforeClass;
 import org.opendaylight.yangtools.util.AbstractStringIdentifier;
-import java.io.File;
-import java.io.IOException;
 
 public abstract class AbstractActorTest {
     protected static final class MockIdentifier extends AbstractStringIdentifier<MockIdentifier> {
@@ -29,14 +29,14 @@ public abstract class AbstractActorTest {
     private static ActorSystem system;
 
     @BeforeClass
-    public static void setUpClass() throws Exception{
+    public static void setUpClass() throws Exception {
         deleteJournal();
         System.setProperty("shard.persistent", "false");
         system = ActorSystem.create("test");
     }
 
     @AfterClass
-    public static void tearDownClass() throws Exception{
+    public static void tearDownClass() throws Exception {
         deleteJournal();
         JavaTestKit.shutdownActorSystem(system);
         system = null;
@@ -49,7 +49,7 @@ public abstract class AbstractActorTest {
     protected static void deleteJournal() throws IOException {
         File journal = new File("journal");
 
-        if(journal.exists()) {
+        if (journal.exists()) {
             FileUtils.deleteDirectory(journal);
         }
     }