mirror of
https://github.com/opensim/opensim.git
synced 2026-08-07 09:45:47 +08:00
removed outdated suport for simianGrid. Simian was a web/php alternative to Robust (https://code.google.com/archive/p/openmetaverse)
This commit is contained in:
@@ -38,7 +38,6 @@ using OpenSim.Region.Framework.Interfaces;
|
||||
using OpenSim.Region.Framework.Scenes;
|
||||
using OpenSim.Services.Interfaces;
|
||||
using OpenSim.Services.Connectors;
|
||||
using OpenSim.Services.Connectors.SimianGrid;
|
||||
using OpenMetaverse;
|
||||
|
||||
namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.Inventory
|
||||
@@ -694,18 +693,9 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.Inventory
|
||||
{
|
||||
// Still not as flexible as I would like this to be,
|
||||
// but good enough for now
|
||||
string connectorType = new HeloServicesConnector(url).Helo();
|
||||
m_log.DebugFormat("[HG INVENTORY SERVICE]: HELO returned {0}", connectorType);
|
||||
if (connectorType == "opensim-simian")
|
||||
{
|
||||
connector = new SimianInventoryServiceConnector(url);
|
||||
}
|
||||
else
|
||||
{
|
||||
RemoteXInventoryServicesConnector rxisc = new RemoteXInventoryServicesConnector(url);
|
||||
rxisc.Scene = m_Scenes[0];
|
||||
connector = rxisc;
|
||||
}
|
||||
RemoteXInventoryServicesConnector rxisc = new RemoteXInventoryServicesConnector(url);
|
||||
rxisc.Scene = m_Scenes[0];
|
||||
connector = rxisc;
|
||||
|
||||
m_connectors.Add(url, connector);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user