aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/Scene.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2014-01-16 00:05:04 +0000
committerJustin Clark-Casey (justincc)2014-01-16 00:05:04 +0000
commite99a7d879ecf59737e9916a9eb229698ef866627 (patch)
treee355f0677fed4b0dae7dff94df2a07c7e7318ccb /OpenSim/Region/Framework/Scenes/Scene.cs
parentminor: Add David Rowe to ctrlaltdavid handle by request (diff)
downloadopensim-SC_OLD-e99a7d879ecf59737e9916a9eb229698ef866627.zip
opensim-SC_OLD-e99a7d879ecf59737e9916a9eb229698ef866627.tar.gz
opensim-SC_OLD-e99a7d879ecf59737e9916a9eb229698ef866627.tar.bz2
opensim-SC_OLD-e99a7d879ecf59737e9916a9eb229698ef866627.tar.xz
Remove old IInterRegionComms and references. This hasn't been used since 2009 and was superseded by ISimulationService
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/Scene.cs')
-rw-r--r--OpenSim/Region/Framework/Scenes/Scene.cs12
1 files changed, 0 insertions, 12 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs
index 7772f94..567ce2a 100644
--- a/OpenSim/Region/Framework/Scenes/Scene.cs
+++ b/OpenSim/Region/Framework/Scenes/Scene.cs
@@ -4405,18 +4405,6 @@ namespace OpenSim.Region.Framework.Scenes
4405 return sp; 4405 return sp;
4406 } 4406 }
4407 4407
4408 public virtual bool IncomingRetrieveRootAgent(UUID id, out IAgentData agent)
4409 {
4410 agent = null;
4411 ScenePresence sp = GetScenePresence(id);
4412 if ((sp != null) && (!sp.IsChildAgent))
4413 {
4414 sp.IsChildAgent = true;
4415 return sp.CopyAgent(out agent);
4416 }
4417
4418 return false;
4419 }
4420 /// <summary> 4408 /// <summary>
4421 /// Authenticated close (via network) 4409 /// Authenticated close (via network)
4422 /// </summary> 4410 /// </summary>