Remove unused exceptions
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / test / java / org / opendaylight / controller / cluster / datastore / entityownership / AbstractClusterRefEntityOwnershipTest.java
index c7013e81818887b3ab2f340e80d743fdefbf5d0f..4c8cfcc25b5ed8cc76e175bc19f04293aa2c01d9 100644 (file)
@@ -11,7 +11,6 @@ package org.opendaylight.controller.cluster.datastore.entityownership;
 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;
 
@@ -20,12 +19,12 @@ public class AbstractClusterRefEntityOwnershipTest extends AbstractEntityOwnersh
     private static ActorSystem system;
 
     @BeforeClass
-    public static void setUpClass() throws IOException {
+    public static void setUpClass() {
         system = ActorSystem.create("test", ConfigFactory.load().getConfig("test-config"));
     }
 
     @AfterClass
-    public static void tearDownClass() throws IOException {
+    public static void tearDownClass() {
         TestKit.shutdownActorSystem(system);
         system = null;
     }