From a9df572c257885e578aabd34a2ad8961228c28ad Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Wed, 7 Jan 2009 18:36:27 +0000 Subject: * refactor: Remove MakeHttpRequest wrapper method from Scene in favour of a direct call --- OpenSim/Region/Environment/Scenes/Scene.cs | 18 ------------------ 1 file changed, 18 deletions(-) (limited to 'OpenSim/Region/Environment/Scenes/Scene.cs') diff --git a/OpenSim/Region/Environment/Scenes/Scene.cs b/OpenSim/Region/Environment/Scenes/Scene.cs index 3bf6cef..9a07f6b 100644 --- a/OpenSim/Region/Environment/Scenes/Scene.cs +++ b/OpenSim/Region/Environment/Scenes/Scene.cs @@ -141,7 +141,6 @@ namespace OpenSim.Region.Environment.Scenes public IXfer XferManager; - protected IHttpRequests m_httpRequestModule; protected IXMLRPC m_xmlrpcModule; protected IWorldComm m_worldCommModule; protected IAvatarFactory m_AvatarFactory; @@ -766,7 +765,6 @@ namespace OpenSim.Region.Environment.Scenes /// public void SetModuleInterfaces() { - m_httpRequestModule = RequestModuleInterface(); m_xmlrpcModule = RequestModuleInterface(); m_worldCommModule = RequestModuleInterface(); XferManager = RequestModuleInterface(); @@ -3387,22 +3385,6 @@ namespace OpenSim.Region.Environment.Scenes } } - /// - /// - /// - /// - /// - /// - /// - public UUID MakeHttpRequest(string url, string type, string body) - { - if (m_httpRequestModule != null) - { - return m_httpRequestModule.MakeHttpRequest(url, type, body); - } - return UUID.Zero; - } - public virtual void StoreAddFriendship(UUID ownerID, UUID friendID, uint perms) { m_sceneGridService.AddNewUserFriend(ownerID, friendID, perms); -- cgit v1.1