Remove unused exceptions
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / test / java / org / opendaylight / controller / cluster / datastore / AbstractClusterRefActorTest.java
index a9f7593f153e5246b02630c506908df3013fae0d..1ed067a47e5d34117c2091912b7265e17c80da62 100644 (file)
@@ -11,7 +11,6 @@ package org.opendaylight.controller.cluster.datastore;
 import akka.actor.ActorSystem;
 import akka.testkit.javadsl.TestKit;
 import com.typesafe.config.ConfigFactory;
-import java.io.IOException;
 import org.junit.AfterClass;
 import org.junit.BeforeClass;
 
@@ -19,13 +18,13 @@ public abstract class AbstractClusterRefActorTest extends AbstractTest {
     private static ActorSystem system;
 
     @BeforeClass
-    public static void setUpClass() throws IOException {
+    public static void setUpClass() {
         System.setProperty("shard.persistent", "false");
         system = ActorSystem.create("test", ConfigFactory.load().getConfig("test-config"));
     }
 
     @AfterClass
-    public static void tearDownClass() throws IOException {
+    public static void tearDownClass() {
         TestKit.shutdownActorSystem(system, Boolean.TRUE);
         system = null;
     }