* Get the xml2 entities serialization representation in the archiver module

* Not yet reusing serialization module - this will happen in the future
* No user functionality yet
This commit is contained in:
Justin Clarke Casey
2008-05-24 19:21:57 +00:00
parent 58e71b8507
commit dd4100db4c
5 changed files with 71 additions and 26 deletions

View File

@@ -152,18 +152,19 @@ namespace OpenSim.Region.Environment.Modules.Grid.Interregion
public void PostInitialise()
{
if (m_enabled)
{
try
{
m_tcpPort = m_config.Configs["Comms"].GetInt("remoting_port", m_tcpPort);
}
catch
{
}
internal_CreateRemotingObjects();
}
// Commenting out to remove 'unreachable code' warning since m_enabled is never true
// if (m_enabled)
// {
// try
// {
// m_tcpPort = m_config.Configs["Comms"].GetInt("remoting_port", m_tcpPort);
// }
// catch
// {
// }
//
// internal_CreateRemotingObjects();
// }
}
public void Close()