renamed RemoteServerNode -> RemoteNode

This commit is contained in:
jboner 2009-11-25 12:42:50 +01:00
parent 389182c1c6
commit 30d8dec0e7
5 changed files with 12 additions and 11 deletions

View file

@ -7,7 +7,7 @@ package se.scalablesolutions.akka.api;
import se.scalablesolutions.akka.Config;
import se.scalablesolutions.akka.actor.ActiveObject;
import se.scalablesolutions.akka.config.ActiveObjectConfigurator;
import se.scalablesolutions.akka.nio.RemoteServerNode;
import se.scalablesolutions.akka.nio.RemoteNode;
import junit.framework.TestCase;
@ -17,7 +17,7 @@ public class RemoteInMemoryStateTest extends TestCase {
static {
new Thread(new Runnable() {
public void run() {
RemoteServerNode.start();
RemoteNode.start();
}
}).start();
try { Thread.currentThread().sleep(1000); } catch (Exception e) {}