Remove unused exceptions
[controller.git] / opendaylight / md-sal / sal-akka-raft / src / main / java / org / opendaylight / controller / cluster / raft / NoopRaftActorSnapshotCohort.java
index 42b226f2af71ac50464b53368f09d40c2770c6b8..f19c0356230b027c910c6bed502f2c3e023f55c8 100644 (file)
@@ -9,7 +9,6 @@ package org.opendaylight.controller.cluster.raft;
 
 import akka.actor.ActorRef;
 import com.google.common.io.ByteSource;
-import java.io.IOException;
 import java.io.OutputStream;
 import java.util.Optional;
 import org.opendaylight.controller.cluster.raft.persisted.EmptyState;
@@ -35,7 +34,7 @@ public final class NoopRaftActorSnapshotCohort implements RaftActorSnapshotCohor
     }
 
     @Override
-    public State deserializeSnapshot(ByteSource snapshotBytes) throws IOException {
+    public State deserializeSnapshot(ByteSource snapshotBytes) {
         return EmptyState.INSTANCE;
     }
 }