Small tweaks to docs

Getting a couple of small tweaks out of the way
This commit is contained in:
Arnout Engelen 2017-04-24 15:52:14 +02:00
parent e495408627
commit f447f8e73f
8 changed files with 44 additions and 32 deletions

View file

@ -4,7 +4,6 @@
package jdocs.actor;
//#imports
import akka.actor.TypedActor;
import akka.actor.*;
import akka.japi.*;
@ -25,7 +24,6 @@ import akka.routing.RoundRobinGroup;
import org.junit.Test;
import static org.junit.Assert.assertEquals;
//#imports
public class TypedActorDocTest extends AbstractJavaTest {
Object someReference = null;
ActorSystem system = null;
@ -198,7 +196,7 @@ public class TypedActorDocTest extends AbstractJavaTest {
}
}
//#typed-router-types-1
//#typed-router-types
interface HasName {
String name();
}