X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-akka-raft%2Fsrc%2Ftest%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fraft%2Futils%2FDoNothingActor.java;h=1080aadfe9c40c05c45db1db8aede93a7ec3f29b;hb=refs%2Fchanges%2F02%2F65902%2F12;hp=4a73aadc197779acc4b992ec98e9f865d64deeb8;hpb=78622608d4c83bfc2e755c63b8b326e746ec500c;p=controller.git diff --git a/opendaylight/md-sal/sal-akka-raft/src/test/java/org/opendaylight/controller/cluster/raft/utils/DoNothingActor.java b/opendaylight/md-sal/sal-akka-raft/src/test/java/org/opendaylight/controller/cluster/raft/utils/DoNothingActor.java index 4a73aadc19..1080aadfe9 100644 --- a/opendaylight/md-sal/sal-akka-raft/src/test/java/org/opendaylight/controller/cluster/raft/utils/DoNothingActor.java +++ b/opendaylight/md-sal/sal-akka-raft/src/test/java/org/opendaylight/controller/cluster/raft/utils/DoNothingActor.java @@ -5,13 +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 org.opendaylight.controller.cluster.raft.utils; -import akka.actor.UntypedActor; +import akka.actor.UntypedAbstractActor; -public class DoNothingActor extends UntypedActor { - @Override public void onReceive(Object message) { +public class DoNothingActor extends UntypedAbstractActor { + @Override + public void onReceive(final Object message) throws Exception { } }