diff options
author | Justin Clark-Casey (justincc) | 2012-06-30 01:14:49 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2012-06-30 01:14:49 +0100 |
commit | a4551b027bc3f9dfcf79f74210a1156abfb7bb2f (patch) | |
tree | e07fea6ca3111135806559594ffc1c87209c1d7e /OpenSim/Region/CoreModules | |
parent | Remove code listed for removal in 0.7.3 that handled script restart for incom... (diff) | |
download | opensim-SC_OLD-a4551b027bc3f9dfcf79f74210a1156abfb7bb2f.zip opensim-SC_OLD-a4551b027bc3f9dfcf79f74210a1156abfb7bb2f.tar.gz opensim-SC_OLD-a4551b027bc3f9dfcf79f74210a1156abfb7bb2f.tar.bz2 opensim-SC_OLD-a4551b027bc3f9dfcf79f74210a1156abfb7bb2f.tar.xz |
Removing unused handling of incoming create object by userID and itemID only.
It appears this was never actually used since attachments were rezzed in other code.
This was never available on remote simulator comms, only local.
Diffstat (limited to 'OpenSim/Region/CoreModules')
-rw-r--r-- | OpenSim/Region/CoreModules/ServiceConnectorsOut/Simulation/LocalSimulationConnector.cs | 18 | ||||
-rw-r--r-- | OpenSim/Region/CoreModules/ServiceConnectorsOut/Simulation/RemoteSimulationConnector.cs | 9 |
2 files changed, 1 insertions, 26 deletions
diff --git a/OpenSim/Region/CoreModules/ServiceConnectorsOut/Simulation/LocalSimulationConnector.cs b/OpenSim/Region/CoreModules/ServiceConnectorsOut/Simulation/LocalSimulationConnector.cs index 026c6c8..09a3bd6 100644 --- a/OpenSim/Region/CoreModules/ServiceConnectorsOut/Simulation/LocalSimulationConnector.cs +++ b/OpenSim/Region/CoreModules/ServiceConnectorsOut/Simulation/LocalSimulationConnector.cs | |||
@@ -354,24 +354,6 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.Simulation | |||
354 | return false; | 354 | return false; |
355 | } | 355 | } |
356 | 356 | ||
357 | public bool CreateObject(GridRegion destination, UUID userID, UUID itemID) | ||
358 | { | ||
359 | if (destination == null) | ||
360 | return false; | ||
361 | |||
362 | if (m_scenes.ContainsKey(destination.RegionID)) | ||
363 | { | ||
364 | // m_log.DebugFormat( | ||
365 | // "[LOCAL SIMULATION CONNECTOR]: Found region {0} {1} to send AgentUpdate", | ||
366 | // s.RegionInfo.RegionName, destination.RegionHandle); | ||
367 | |||
368 | return m_scenes[destination.RegionID].IncomingCreateObject(userID, itemID); | ||
369 | } | ||
370 | |||
371 | return false; | ||
372 | } | ||
373 | |||
374 | |||
375 | #endregion /* IInterregionComms */ | 357 | #endregion /* IInterregionComms */ |
376 | 358 | ||
377 | #region Misc | 359 | #region Misc |
diff --git a/OpenSim/Region/CoreModules/ServiceConnectorsOut/Simulation/RemoteSimulationConnector.cs b/OpenSim/Region/CoreModules/ServiceConnectorsOut/Simulation/RemoteSimulationConnector.cs index f980f68..bd4a23b 100644 --- a/OpenSim/Region/CoreModules/ServiceConnectorsOut/Simulation/RemoteSimulationConnector.cs +++ b/OpenSim/Region/CoreModules/ServiceConnectorsOut/Simulation/RemoteSimulationConnector.cs | |||
@@ -300,13 +300,6 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.Simulation | |||
300 | return false; | 300 | return false; |
301 | } | 301 | } |
302 | 302 | ||
303 | public bool CreateObject(GridRegion destination, UUID userID, UUID itemID) | ||
304 | { | ||
305 | // Not Implemented | ||
306 | return false; | ||
307 | } | ||
308 | |||
309 | #endregion /* IInterregionComms */ | 303 | #endregion /* IInterregionComms */ |
310 | |||
311 | } | 304 | } |
312 | } | 305 | } \ No newline at end of file |