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%2F09%2F83009%2F6;hp=741c473681bbf5654fe4677c8da01ec7165301bb;hpb=244d226cc66672e2e15d0b557bd1af37153d8065;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 741c473681..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) throws Exception { +public class DoNothingActor extends UntypedAbstractActor { + @Override + public void onReceive(final Object message) throws Exception { } }