* Rolled back a few changes.

This commit is contained in:
Adam Frisby
2008-05-01 18:04:42 +00:00
parent 138e612300
commit 20a9bf08f5
117 changed files with 5079 additions and 4982 deletions

View File

@@ -31,10 +31,9 @@ using System.Runtime.Remoting.Channels.Tcp;
namespace OpenSim.Grid.ScriptServer
{
internal class RemotingServer
class RemotingServer
{
private readonly TcpChannel channel;
TcpChannel channel;
public RemotingServer(int port, string instanceName)
{
// Create an instance of a channel
@@ -43,9 +42,9 @@ namespace OpenSim.Grid.ScriptServer
// Register as an available service with the name HelloWorld
RemotingConfiguration.RegisterWellKnownServiceType(
typeof (RemotingObject),
typeof(RemotingObject),
instanceName,
WellKnownObjectMode.Singleton);
}
}
}
}