From 931eb892d92bcd61194655ec02def6264d8b182e Mon Sep 17 00:00:00 2001
From: Diva Canto
Date: Sat, 13 Jul 2013 17:56:42 -0700
Subject: Deleted GET agent all around. Not used.
---
.../Simulation/SimulationServiceConnector.cs | 35 ----------------------
1 file changed, 35 deletions(-)
(limited to 'OpenSim/Services/Connectors/Simulation')
diff --git a/OpenSim/Services/Connectors/Simulation/SimulationServiceConnector.cs b/OpenSim/Services/Connectors/Simulation/SimulationServiceConnector.cs
index f51c809..7eb8c24 100644
--- a/OpenSim/Services/Connectors/Simulation/SimulationServiceConnector.cs
+++ b/OpenSim/Services/Connectors/Simulation/SimulationServiceConnector.cs
@@ -271,41 +271,6 @@ namespace OpenSim.Services.Connectors.Simulation
return false;
}
- ///
- /// Not sure what sequence causes this function to be invoked. The only calling
- /// path is through the GET method
- ///
- public bool RetrieveAgent(GridRegion destination, UUID id, out IAgentData agent)
- {
- // m_log.DebugFormat("[REMOTE SIMULATION CONNECTOR]: RetrieveAgent start");
-
- agent = null;
-
- // Eventually, we want to use a caps url instead of the agentID
- string uri = destination.ServerURI + AgentPath() + id + "/" + destination.RegionID.ToString() + "/";
-
- try
- {
- OSDMap result = WebUtil.GetFromService(uri, 10000);
- if (result["Success"].AsBoolean())
- {
- // OSDMap args = Util.GetOSDMap(result["_RawResult"].AsString());
- OSDMap args = (OSDMap)result["_Result"];
- if (args != null)
- {
- agent = new CompleteAgentData();
- agent.Unpack(args, null);
- return true;
- }
- }
- }
- catch (Exception e)
- {
- m_log.Warn("[REMOTE SIMULATION CONNECTOR]: UpdateAgent failed with exception: " + e.ToString());
- }
-
- return false;
- }
///
///
--
cgit v1.1